2006-09-02 14:28:55 +00:00
|
|
|
/* GStreamer
|
|
|
|
*
|
2003-10-10 12:47:42 +00:00
|
|
|
* Copyright (C) 2003 Ronald Bultje <rbultje@ronald.bitfreak.net>
|
2017-02-26 00:47:03 +00:00
|
|
|
* 2006 Edgard Lima <edgard.lima@gmail.com>
|
2003-10-10 12:47:42 +00:00
|
|
|
*
|
|
|
|
* gstv4l2tuner.c: tuner interface implementation for V4L2
|
|
|
|
*
|
|
|
|
* This library is free software; you can redistribute it and/or
|
|
|
|
* modify it under the terms of the GNU Library General Public
|
|
|
|
* License as published by the Free Software Foundation; either
|
|
|
|
* version 2 of the License, or (at your option) any later version.
|
|
|
|
*
|
|
|
|
* This library is distributed in the hope that it will be useful,
|
|
|
|
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
|
|
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
|
|
|
|
* Library General Public License for more details.
|
|
|
|
*
|
|
|
|
* You should have received a copy of the GNU Library General Public
|
|
|
|
* License along with this library; if not, write to the
|
2012-11-04 00:07:18 +00:00
|
|
|
* Free Software Foundation, Inc., 51 Franklin St, Fifth Floor,
|
|
|
|
* Boston, MA 02110-1301, USA.
|
2003-10-10 12:47:42 +00:00
|
|
|
*/
|
|
|
|
|
|
|
|
#ifdef HAVE_CONFIG_H
|
|
|
|
#include "config.h"
|
|
|
|
#endif
|
|
|
|
|
|
|
|
#include <gst/gst.h>
|
|
|
|
|
2017-07-13 00:49:47 +00:00
|
|
|
#include "gstv4l2object.h"
|
2003-10-10 12:47:42 +00:00
|
|
|
#include "gstv4l2tuner.h"
|
2006-05-11 17:59:59 +00:00
|
|
|
#include "gstv4l2object.h"
|
2006-05-05 20:12:59 +00:00
|
|
|
|
2013-08-19 16:46:45 +00:00
|
|
|
G_DEFINE_TYPE (GstV4l2TunerChannel, gst_v4l2_tuner_channel,
|
|
|
|
GST_TYPE_TUNER_CHANNEL);
|
2003-10-10 12:47:42 +00:00
|
|
|
|
2013-08-19 16:46:45 +00:00
|
|
|
G_DEFINE_TYPE (GstV4l2TunerNorm, gst_v4l2_tuner_norm, GST_TYPE_TUNER_NORM);
|
2003-10-10 12:47:42 +00:00
|
|
|
|
|
|
|
|
|
|
|
static void
|
2004-03-14 22:34:33 +00:00
|
|
|
gst_v4l2_tuner_channel_class_init (GstV4l2TunerChannelClass * klass)
|
2003-10-10 12:47:42 +00:00
|
|
|
{
|
|
|
|
}
|
|
|
|
|
|
|
|
static void
|
2004-03-14 22:34:33 +00:00
|
|
|
gst_v4l2_tuner_channel_init (GstV4l2TunerChannel * channel)
|
2003-10-10 12:47:42 +00:00
|
|
|
{
|
2006-03-25 05:31:28 +00:00
|
|
|
channel->index = (guint32) - 1;
|
|
|
|
channel->tuner = (guint32) - 1;
|
|
|
|
channel->audio = (guint32) - 1;
|
2003-10-10 12:47:42 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
static void
|
2004-03-14 22:34:33 +00:00
|
|
|
gst_v4l2_tuner_norm_class_init (GstV4l2TunerNormClass * klass)
|
2003-10-10 12:47:42 +00:00
|
|
|
{
|
|
|
|
}
|
|
|
|
|
|
|
|
static void
|
2004-03-14 22:34:33 +00:00
|
|
|
gst_v4l2_tuner_norm_init (GstV4l2TunerNorm * norm)
|
2003-10-10 12:47:42 +00:00
|
|
|
{
|
|
|
|
norm->index = 0;
|
|
|
|
}
|
|
|
|
|
compile fixes for --disable-gst-debug, G_DISABLE_ASSERT and friends
Original commit message from CVS:
* ext/alsa/gstalsamixer.c: (gst_alsa_mixer_get_volume),
(gst_alsa_mixer_set_volume), (gst_alsa_mixer_set_mute),
(gst_alsa_mixer_set_record), (gst_alsa_mixer_set_option),
(gst_alsa_mixer_get_option):
* ext/dvdnav/dvdnavsrc.c: (dvdnav_get_event_name),
(dvdnavsrc_print_event):
* ext/ogg/gstoggdemux.c: (_find_chain_process), (gst_ogg_print):
* ext/ogg/gstoggmux.c: (gst_ogg_mux_pad_link),
(gst_ogg_mux_pad_unlink):
* gst/multipart/multipartmux.c: (gst_multipart_mux_pad_link),
(gst_multipart_mux_pad_unlink):
* gst/videofilter/gstvideobalance.c:
(gst_videobalance_colorbalance_set_value):
* gst/videomixer/videomixer.c: (gst_videomixer_pad_link),
(gst_videomixer_pad_unlink):
* po/uk.po:
* sys/oss/gstossmixer.c:
* sys/v4l/gstv4lcolorbalance.c:
* sys/v4l/gstv4ltuner.c:
* sys/v4l/v4lsrc_calls.c:
* sys/v4l2/gstv4l2colorbalance.c:
* sys/v4l2/gstv4l2tuner.c:
compile fixes for --disable-gst-debug, G_DISABLE_ASSERT and friends
2004-08-03 16:06:09 +00:00
|
|
|
static G_GNUC_UNUSED gboolean
|
2006-05-11 17:59:59 +00:00
|
|
|
gst_v4l2_tuner_contains_channel (GstV4l2Object * v4l2object,
|
2004-03-14 22:34:33 +00:00
|
|
|
GstV4l2TunerChannel * v4l2channel)
|
2003-10-10 12:47:42 +00:00
|
|
|
{
|
|
|
|
const GList *item;
|
|
|
|
|
sys/v4l2/: Renamed some properties to match the tuner interface naming.
Original commit message from CVS:
* sys/v4l2/gstv4l2object.c:
(gst_v4l2_object_install_properties_helper), (gst_v4l2_object_new),
(gst_v4l2_object_set_property_helper),
(gst_v4l2_object_get_property_helper), (gst_v4l2_set_defaults):
* sys/v4l2/gstv4l2object.h:
* sys/v4l2/gstv4l2src.c: (gst_v4l2src_class_init),
(gst_v4l2src_create):
* sys/v4l2/gstv4l2tuner.c: (gst_v4l2_tuner_contains_channel),
(gst_v4l2_tuner_list_channels),
(gst_v4l2_tuner_set_channel_and_notify),
(gst_v4l2_tuner_get_channel), (gst_v4l2_tuner_contains_norm),
(gst_v4l2_tuner_list_norms), (gst_v4l2_tuner_set_norm_and_notify),
(gst_v4l2_tuner_get_norm):
* sys/v4l2/v4l2_calls.c: (gst_v4l2_get_capabilities),
(gst_v4l2_fill_lists), (gst_v4l2_empty_lists):
* sys/v4l2/v4l2src_calls.c: (gst_v4l2src_get_fps):
Renamed some properties to match the tuner interface naming.
2006-09-27 17:04:22 +00:00
|
|
|
for (item = v4l2object->channels; item != NULL; item = item->next)
|
2003-10-10 12:47:42 +00:00
|
|
|
if (item->data == v4l2channel)
|
|
|
|
return TRUE;
|
|
|
|
|
|
|
|
return FALSE;
|
|
|
|
}
|
|
|
|
|
2006-05-11 17:59:59 +00:00
|
|
|
const GList *
|
|
|
|
gst_v4l2_tuner_list_channels (GstV4l2Object * v4l2object)
|
2003-10-10 12:47:42 +00:00
|
|
|
{
|
sys/v4l2/: Renamed some properties to match the tuner interface naming.
Original commit message from CVS:
* sys/v4l2/gstv4l2object.c:
(gst_v4l2_object_install_properties_helper), (gst_v4l2_object_new),
(gst_v4l2_object_set_property_helper),
(gst_v4l2_object_get_property_helper), (gst_v4l2_set_defaults):
* sys/v4l2/gstv4l2object.h:
* sys/v4l2/gstv4l2src.c: (gst_v4l2src_class_init),
(gst_v4l2src_create):
* sys/v4l2/gstv4l2tuner.c: (gst_v4l2_tuner_contains_channel),
(gst_v4l2_tuner_list_channels),
(gst_v4l2_tuner_set_channel_and_notify),
(gst_v4l2_tuner_get_channel), (gst_v4l2_tuner_contains_norm),
(gst_v4l2_tuner_list_norms), (gst_v4l2_tuner_set_norm_and_notify),
(gst_v4l2_tuner_get_norm):
* sys/v4l2/v4l2_calls.c: (gst_v4l2_get_capabilities),
(gst_v4l2_fill_lists), (gst_v4l2_empty_lists):
* sys/v4l2/v4l2src_calls.c: (gst_v4l2src_get_fps):
Renamed some properties to match the tuner interface naming.
2006-09-27 17:04:22 +00:00
|
|
|
return v4l2object->channels;
|
2003-10-10 12:47:42 +00:00
|
|
|
}
|
|
|
|
|
2006-05-05 20:12:59 +00:00
|
|
|
gboolean
|
2006-05-11 17:59:59 +00:00
|
|
|
gst_v4l2_tuner_set_channel (GstV4l2Object * v4l2object,
|
|
|
|
GstTunerChannel * channel)
|
2003-10-10 12:47:42 +00:00
|
|
|
{
|
|
|
|
GstV4l2TunerChannel *v4l2channel = GST_V4L2_TUNER_CHANNEL (channel);
|
|
|
|
|
|
|
|
/* assert that we're opened and that we're using a known item */
|
2006-05-11 17:59:59 +00:00
|
|
|
g_return_val_if_fail (GST_V4L2_IS_OPEN (v4l2object), FALSE);
|
|
|
|
g_return_val_if_fail (gst_v4l2_tuner_contains_channel (v4l2object,
|
2006-05-05 20:12:59 +00:00
|
|
|
v4l2channel), FALSE);
|
2003-10-10 12:47:42 +00:00
|
|
|
|
2006-05-11 17:59:59 +00:00
|
|
|
if (v4l2object->set_in_out_func (v4l2object, v4l2channel->index)) {
|
|
|
|
gst_tuner_channel_changed (GST_TUNER (v4l2object->element), channel);
|
sys/v4l2/v4l2src_calls.*: Store the format list in the order that the driver gives it to us.
Original commit message from CVS:
2007-05-30 Andy Wingo <wingo@pobox.com>
* sys/v4l2/v4l2src_calls.h:
* sys/v4l2/v4l2src_calls.c (gst_v4l2src_fill_format_list): Store
the format list in the order that the driver gives it to us.
(gst_v4l2src_probe_caps_for_format_and_size)
(gst_v4l2src_probe_caps_for_format): New functions, fill GstCaps
based on the capabilities of the device.
(gst_v4l2src_grab_frame): Update for object variable renaming.
(gst_v4l2src_set_capture): Update to be strict in its parameters,
as in the set_caps below.
(gst_v4l2src_capture_init): Update for object variable renaming,
and reflow.
(gst_v4l2src_capture_start, gst_v4l2src_capture_stop)
(gst_v4l2src_capture_deinit): Update for object variable renaming.
(gst_v4l2src_update_fps, gst_v4l2src_set_fps)
(gst_v4l2src_get_fps): Remove; these functions don't have much
meaning outside of an atomic set_caps method.
(gst_v4l2src_buffer_new): Don't set buffer duration, it is not
known.
* sys/v4l2/gstv4l2tuner.c (gst_v4l2_tuner_set_channel): Remove
call to update_fps; not sure about this change.
(gst_v4l2_tuner_set_norm): Work around the fact that for the
moment we don't have an update_fps_func.
* sys/v4l2/gstv4l2src.h (struct _GstV4l2Src): Don't put v4l2
structures in the object, just store what we need. Do store the
probed caps of the device. Don't store the current frame rate.
* sys/v4l2/gstv4l2src.c (gst_v4l2src_init): Remove the
update_fps_function, for now. Update for new object variable
naming.
(gst_v4l2src_set_property, gst_v4l2src_get_property): Update for
new object variable naming.
(gst_v4l2src_v4l2fourcc_to_structure): Rename from ..._to_caps.
(gst_v4l2_structure_to_v4l2fourcc): Rename from ...caps_to_....
(gst_v4l2src_get_caps): Rework to probe the device for supported
frame sizes and frame rates.
(gst_v4l2src_set_caps): Rework to be strict in the given
parameters: if someone asks us to have a certain size and rate,
that is what we configure.
(gst_v4l2src_get_read): Update for object variable naming. Don't
leak buffers on short reads.
(gst_v4l2src_get_mmap): Update for object variable naming, and add
comments.
(gst_v4l2src_create): Update for object variable naming.
2007-05-30 14:40:53 +00:00
|
|
|
/* can FPS change here? */
|
2006-05-05 20:12:59 +00:00
|
|
|
return TRUE;
|
2004-01-12 02:19:57 +00:00
|
|
|
}
|
2006-05-05 20:12:59 +00:00
|
|
|
|
|
|
|
return FALSE;
|
|
|
|
|
|
|
|
}
|
|
|
|
|
2006-05-11 17:59:59 +00:00
|
|
|
GstTunerChannel *
|
|
|
|
gst_v4l2_tuner_get_channel (GstV4l2Object * v4l2object)
|
2006-05-05 20:12:59 +00:00
|
|
|
{
|
2003-10-10 12:47:42 +00:00
|
|
|
GList *item;
|
2021-02-08 22:22:37 +00:00
|
|
|
guint32 channel;
|
2003-10-10 12:47:42 +00:00
|
|
|
|
|
|
|
/* assert that we're opened and that we're using a known item */
|
2006-05-11 17:59:59 +00:00
|
|
|
g_return_val_if_fail (GST_V4L2_IS_OPEN (v4l2object), NULL);
|
2003-10-10 12:47:42 +00:00
|
|
|
|
2007-02-22 17:53:26 +00:00
|
|
|
if (v4l2object->get_in_out_func (v4l2object, &channel)) {
|
|
|
|
|
|
|
|
for (item = v4l2object->channels; item != NULL; item = item->next) {
|
|
|
|
if (channel == GST_V4L2_TUNER_CHANNEL (item->data)->index)
|
|
|
|
return (GstTunerChannel *) item->data;
|
|
|
|
}
|
2003-10-10 12:47:42 +00:00
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
return NULL;
|
|
|
|
}
|
|
|
|
|
compile fixes for --disable-gst-debug, G_DISABLE_ASSERT and friends
Original commit message from CVS:
* ext/alsa/gstalsamixer.c: (gst_alsa_mixer_get_volume),
(gst_alsa_mixer_set_volume), (gst_alsa_mixer_set_mute),
(gst_alsa_mixer_set_record), (gst_alsa_mixer_set_option),
(gst_alsa_mixer_get_option):
* ext/dvdnav/dvdnavsrc.c: (dvdnav_get_event_name),
(dvdnavsrc_print_event):
* ext/ogg/gstoggdemux.c: (_find_chain_process), (gst_ogg_print):
* ext/ogg/gstoggmux.c: (gst_ogg_mux_pad_link),
(gst_ogg_mux_pad_unlink):
* gst/multipart/multipartmux.c: (gst_multipart_mux_pad_link),
(gst_multipart_mux_pad_unlink):
* gst/videofilter/gstvideobalance.c:
(gst_videobalance_colorbalance_set_value):
* gst/videomixer/videomixer.c: (gst_videomixer_pad_link),
(gst_videomixer_pad_unlink):
* po/uk.po:
* sys/oss/gstossmixer.c:
* sys/v4l/gstv4lcolorbalance.c:
* sys/v4l/gstv4ltuner.c:
* sys/v4l/v4lsrc_calls.c:
* sys/v4l2/gstv4l2colorbalance.c:
* sys/v4l2/gstv4l2tuner.c:
compile fixes for --disable-gst-debug, G_DISABLE_ASSERT and friends
2004-08-03 16:06:09 +00:00
|
|
|
static G_GNUC_UNUSED gboolean
|
2006-05-11 17:59:59 +00:00
|
|
|
gst_v4l2_tuner_contains_norm (GstV4l2Object * v4l2object,
|
2004-03-14 22:34:33 +00:00
|
|
|
GstV4l2TunerNorm * v4l2norm)
|
2003-10-10 12:47:42 +00:00
|
|
|
{
|
|
|
|
const GList *item;
|
|
|
|
|
sys/v4l2/: Renamed some properties to match the tuner interface naming.
Original commit message from CVS:
* sys/v4l2/gstv4l2object.c:
(gst_v4l2_object_install_properties_helper), (gst_v4l2_object_new),
(gst_v4l2_object_set_property_helper),
(gst_v4l2_object_get_property_helper), (gst_v4l2_set_defaults):
* sys/v4l2/gstv4l2object.h:
* sys/v4l2/gstv4l2src.c: (gst_v4l2src_class_init),
(gst_v4l2src_create):
* sys/v4l2/gstv4l2tuner.c: (gst_v4l2_tuner_contains_channel),
(gst_v4l2_tuner_list_channels),
(gst_v4l2_tuner_set_channel_and_notify),
(gst_v4l2_tuner_get_channel), (gst_v4l2_tuner_contains_norm),
(gst_v4l2_tuner_list_norms), (gst_v4l2_tuner_set_norm_and_notify),
(gst_v4l2_tuner_get_norm):
* sys/v4l2/v4l2_calls.c: (gst_v4l2_get_capabilities),
(gst_v4l2_fill_lists), (gst_v4l2_empty_lists):
* sys/v4l2/v4l2src_calls.c: (gst_v4l2src_get_fps):
Renamed some properties to match the tuner interface naming.
2006-09-27 17:04:22 +00:00
|
|
|
for (item = v4l2object->norms; item != NULL; item = item->next)
|
2003-10-10 12:47:42 +00:00
|
|
|
if (item->data == v4l2norm)
|
|
|
|
return TRUE;
|
|
|
|
|
|
|
|
return FALSE;
|
|
|
|
}
|
|
|
|
|
2006-05-11 17:59:59 +00:00
|
|
|
const GList *
|
|
|
|
gst_v4l2_tuner_list_norms (GstV4l2Object * v4l2object)
|
2003-10-10 12:47:42 +00:00
|
|
|
{
|
sys/v4l2/: Renamed some properties to match the tuner interface naming.
Original commit message from CVS:
* sys/v4l2/gstv4l2object.c:
(gst_v4l2_object_install_properties_helper), (gst_v4l2_object_new),
(gst_v4l2_object_set_property_helper),
(gst_v4l2_object_get_property_helper), (gst_v4l2_set_defaults):
* sys/v4l2/gstv4l2object.h:
* sys/v4l2/gstv4l2src.c: (gst_v4l2src_class_init),
(gst_v4l2src_create):
* sys/v4l2/gstv4l2tuner.c: (gst_v4l2_tuner_contains_channel),
(gst_v4l2_tuner_list_channels),
(gst_v4l2_tuner_set_channel_and_notify),
(gst_v4l2_tuner_get_channel), (gst_v4l2_tuner_contains_norm),
(gst_v4l2_tuner_list_norms), (gst_v4l2_tuner_set_norm_and_notify),
(gst_v4l2_tuner_get_norm):
* sys/v4l2/v4l2_calls.c: (gst_v4l2_get_capabilities),
(gst_v4l2_fill_lists), (gst_v4l2_empty_lists):
* sys/v4l2/v4l2src_calls.c: (gst_v4l2src_get_fps):
Renamed some properties to match the tuner interface naming.
2006-09-27 17:04:22 +00:00
|
|
|
return v4l2object->norms;
|
2003-10-10 12:47:42 +00:00
|
|
|
}
|
|
|
|
|
2006-05-11 17:59:59 +00:00
|
|
|
void
|
|
|
|
gst_v4l2_tuner_set_norm_and_notify (GstV4l2Object * v4l2object,
|
|
|
|
GstTunerNorm * norm)
|
2006-05-05 20:12:59 +00:00
|
|
|
{
|
2006-05-11 17:59:59 +00:00
|
|
|
if (gst_v4l2_tuner_set_norm (v4l2object, norm)) {
|
2008-08-23 15:43:49 +00:00
|
|
|
#if 0
|
sys/v4l2/: Renamed some properties to match the tuner interface naming.
Original commit message from CVS:
* sys/v4l2/gstv4l2object.c:
(gst_v4l2_object_install_properties_helper), (gst_v4l2_object_new),
(gst_v4l2_object_set_property_helper),
(gst_v4l2_object_get_property_helper), (gst_v4l2_set_defaults):
* sys/v4l2/gstv4l2object.h:
* sys/v4l2/gstv4l2src.c: (gst_v4l2src_class_init),
(gst_v4l2src_create):
* sys/v4l2/gstv4l2tuner.c: (gst_v4l2_tuner_contains_channel),
(gst_v4l2_tuner_list_channels),
(gst_v4l2_tuner_set_channel_and_notify),
(gst_v4l2_tuner_get_channel), (gst_v4l2_tuner_contains_norm),
(gst_v4l2_tuner_list_norms), (gst_v4l2_tuner_set_norm_and_notify),
(gst_v4l2_tuner_get_norm):
* sys/v4l2/v4l2_calls.c: (gst_v4l2_get_capabilities),
(gst_v4l2_fill_lists), (gst_v4l2_empty_lists):
* sys/v4l2/v4l2src_calls.c: (gst_v4l2src_get_fps):
Renamed some properties to match the tuner interface naming.
2006-09-27 17:04:22 +00:00
|
|
|
g_object_notify (G_OBJECT (v4l2object->element), "norm");
|
2008-08-23 15:43:49 +00:00
|
|
|
#endif
|
2006-05-05 20:12:59 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
gboolean
|
2006-05-11 17:59:59 +00:00
|
|
|
gst_v4l2_tuner_set_norm (GstV4l2Object * v4l2object, GstTunerNorm * norm)
|
2003-10-10 12:47:42 +00:00
|
|
|
{
|
|
|
|
GstV4l2TunerNorm *v4l2norm = GST_V4L2_TUNER_NORM (norm);
|
|
|
|
|
|
|
|
/* assert that we're opened and that we're using a known item */
|
2006-05-11 17:59:59 +00:00
|
|
|
g_return_val_if_fail (GST_V4L2_IS_OPEN (v4l2object), FALSE);
|
|
|
|
g_return_val_if_fail (gst_v4l2_tuner_contains_norm (v4l2object, v4l2norm),
|
2006-05-05 20:12:59 +00:00
|
|
|
FALSE);
|
2003-10-10 12:47:42 +00:00
|
|
|
|
2006-05-11 17:59:59 +00:00
|
|
|
if (gst_v4l2_set_norm (v4l2object, v4l2norm->index)) {
|
|
|
|
gst_tuner_norm_changed (GST_TUNER (v4l2object->element), norm);
|
sys/v4l2/v4l2src_calls.*: Store the format list in the order that the driver gives it to us.
Original commit message from CVS:
2007-05-30 Andy Wingo <wingo@pobox.com>
* sys/v4l2/v4l2src_calls.h:
* sys/v4l2/v4l2src_calls.c (gst_v4l2src_fill_format_list): Store
the format list in the order that the driver gives it to us.
(gst_v4l2src_probe_caps_for_format_and_size)
(gst_v4l2src_probe_caps_for_format): New functions, fill GstCaps
based on the capabilities of the device.
(gst_v4l2src_grab_frame): Update for object variable renaming.
(gst_v4l2src_set_capture): Update to be strict in its parameters,
as in the set_caps below.
(gst_v4l2src_capture_init): Update for object variable renaming,
and reflow.
(gst_v4l2src_capture_start, gst_v4l2src_capture_stop)
(gst_v4l2src_capture_deinit): Update for object variable renaming.
(gst_v4l2src_update_fps, gst_v4l2src_set_fps)
(gst_v4l2src_get_fps): Remove; these functions don't have much
meaning outside of an atomic set_caps method.
(gst_v4l2src_buffer_new): Don't set buffer duration, it is not
known.
* sys/v4l2/gstv4l2tuner.c (gst_v4l2_tuner_set_channel): Remove
call to update_fps; not sure about this change.
(gst_v4l2_tuner_set_norm): Work around the fact that for the
moment we don't have an update_fps_func.
* sys/v4l2/gstv4l2src.h (struct _GstV4l2Src): Don't put v4l2
structures in the object, just store what we need. Do store the
probed caps of the device. Don't store the current frame rate.
* sys/v4l2/gstv4l2src.c (gst_v4l2src_init): Remove the
update_fps_function, for now. Update for new object variable
naming.
(gst_v4l2src_set_property, gst_v4l2src_get_property): Update for
new object variable naming.
(gst_v4l2src_v4l2fourcc_to_structure): Rename from ..._to_caps.
(gst_v4l2_structure_to_v4l2fourcc): Rename from ...caps_to_....
(gst_v4l2src_get_caps): Rework to probe the device for supported
frame sizes and frame rates.
(gst_v4l2src_set_caps): Rework to be strict in the given
parameters: if someone asks us to have a certain size and rate,
that is what we configure.
(gst_v4l2src_get_read): Update for object variable naming. Don't
leak buffers on short reads.
(gst_v4l2src_get_mmap): Update for object variable naming, and add
comments.
(gst_v4l2src_create): Update for object variable naming.
2007-05-30 14:40:53 +00:00
|
|
|
if (v4l2object->update_fps_func)
|
|
|
|
v4l2object->update_fps_func (v4l2object);
|
2006-05-05 20:12:59 +00:00
|
|
|
return TRUE;
|
2004-01-12 02:19:57 +00:00
|
|
|
}
|
2006-05-05 20:12:59 +00:00
|
|
|
|
|
|
|
return FALSE;
|
|
|
|
|
2003-10-10 12:47:42 +00:00
|
|
|
}
|
|
|
|
|
2006-05-11 17:59:59 +00:00
|
|
|
GstTunerNorm *
|
|
|
|
gst_v4l2_tuner_get_norm (GstV4l2Object * v4l2object)
|
2003-10-10 12:47:42 +00:00
|
|
|
{
|
|
|
|
v4l2_std_id norm;
|
|
|
|
|
|
|
|
/* assert that we're opened and that we're using a known item */
|
2006-05-11 17:59:59 +00:00
|
|
|
g_return_val_if_fail (GST_V4L2_IS_OPEN (v4l2object), NULL);
|
2003-10-10 12:47:42 +00:00
|
|
|
|
2006-05-11 17:59:59 +00:00
|
|
|
gst_v4l2_get_norm (v4l2object, &norm);
|
2003-10-10 12:47:42 +00:00
|
|
|
|
2010-04-04 11:43:41 +00:00
|
|
|
return gst_v4l2_tuner_get_norm_by_std_id (v4l2object, norm);
|
|
|
|
}
|
|
|
|
|
|
|
|
GstTunerNorm *
|
|
|
|
gst_v4l2_tuner_get_norm_by_std_id (GstV4l2Object * v4l2object, v4l2_std_id norm)
|
|
|
|
{
|
|
|
|
GList *item;
|
|
|
|
|
sys/v4l2/: Renamed some properties to match the tuner interface naming.
Original commit message from CVS:
* sys/v4l2/gstv4l2object.c:
(gst_v4l2_object_install_properties_helper), (gst_v4l2_object_new),
(gst_v4l2_object_set_property_helper),
(gst_v4l2_object_get_property_helper), (gst_v4l2_set_defaults):
* sys/v4l2/gstv4l2object.h:
* sys/v4l2/gstv4l2src.c: (gst_v4l2src_class_init),
(gst_v4l2src_create):
* sys/v4l2/gstv4l2tuner.c: (gst_v4l2_tuner_contains_channel),
(gst_v4l2_tuner_list_channels),
(gst_v4l2_tuner_set_channel_and_notify),
(gst_v4l2_tuner_get_channel), (gst_v4l2_tuner_contains_norm),
(gst_v4l2_tuner_list_norms), (gst_v4l2_tuner_set_norm_and_notify),
(gst_v4l2_tuner_get_norm):
* sys/v4l2/v4l2_calls.c: (gst_v4l2_get_capabilities),
(gst_v4l2_fill_lists), (gst_v4l2_empty_lists):
* sys/v4l2/v4l2src_calls.c: (gst_v4l2src_get_fps):
Renamed some properties to match the tuner interface naming.
2006-09-27 17:04:22 +00:00
|
|
|
for (item = v4l2object->norms; item != NULL; item = item->next) {
|
2009-01-30 13:40:51 +00:00
|
|
|
if (norm & GST_V4L2_TUNER_NORM (item->data)->index)
|
2004-01-12 02:19:57 +00:00
|
|
|
return (GstTunerNorm *) item->data;
|
2003-10-10 12:47:42 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
return NULL;
|
|
|
|
}
|
|
|
|
|
2010-04-04 11:43:41 +00:00
|
|
|
v4l2_std_id
|
|
|
|
gst_v4l2_tuner_get_std_id_by_norm (GstV4l2Object * v4l2object,
|
|
|
|
GstTunerNorm * norm)
|
|
|
|
{
|
|
|
|
GList *item;
|
|
|
|
|
|
|
|
for (item = v4l2object->norms; item != NULL; item = item->next) {
|
|
|
|
if (norm == GST_TUNER_NORM (item->data))
|
|
|
|
return GST_V4L2_TUNER_NORM (item->data)->index;
|
|
|
|
}
|
|
|
|
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
2006-05-11 17:59:59 +00:00
|
|
|
void
|
|
|
|
gst_v4l2_tuner_set_frequency_and_notify (GstV4l2Object * v4l2object,
|
2006-05-05 20:12:59 +00:00
|
|
|
GstTunerChannel * channel, gulong frequency)
|
|
|
|
{
|
2006-05-11 17:59:59 +00:00
|
|
|
if (gst_v4l2_tuner_set_frequency (v4l2object, channel, frequency)) {
|
2007-07-18 11:42:33 +00:00
|
|
|
#if 0
|
2006-05-11 17:59:59 +00:00
|
|
|
g_object_notify (G_OBJECT (v4l2object->element), "frequency");
|
2007-07-18 11:42:33 +00:00
|
|
|
#endif
|
2006-05-05 20:12:59 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
gboolean
|
2006-05-11 17:59:59 +00:00
|
|
|
gst_v4l2_tuner_set_frequency (GstV4l2Object * v4l2object,
|
2004-03-14 22:34:33 +00:00
|
|
|
GstTunerChannel * channel, gulong frequency)
|
2003-10-10 12:47:42 +00:00
|
|
|
{
|
|
|
|
GstV4l2TunerChannel *v4l2channel = GST_V4L2_TUNER_CHANNEL (channel);
|
2021-02-08 22:22:37 +00:00
|
|
|
guint32 chan;
|
2003-10-10 12:47:42 +00:00
|
|
|
|
|
|
|
/* assert that we're opened and that we're using a known item */
|
2006-05-11 17:59:59 +00:00
|
|
|
g_return_val_if_fail (GST_V4L2_IS_OPEN (v4l2object), FALSE);
|
2006-05-05 20:12:59 +00:00
|
|
|
g_return_val_if_fail (GST_TUNER_CHANNEL_HAS_FLAG (channel,
|
|
|
|
GST_TUNER_CHANNEL_FREQUENCY), FALSE);
|
2006-05-11 17:59:59 +00:00
|
|
|
g_return_val_if_fail (gst_v4l2_tuner_contains_channel (v4l2object,
|
2006-05-05 20:12:59 +00:00
|
|
|
v4l2channel), FALSE);
|
2003-10-10 12:47:42 +00:00
|
|
|
|
2007-02-22 17:53:26 +00:00
|
|
|
if (v4l2object->get_in_out_func (v4l2object, &chan)) {
|
|
|
|
if (chan == GST_V4L2_TUNER_CHANNEL (channel)->index &&
|
|
|
|
GST_TUNER_CHANNEL_HAS_FLAG (channel, GST_TUNER_CHANNEL_FREQUENCY)) {
|
|
|
|
if (gst_v4l2_set_frequency (v4l2object, v4l2channel->tuner, frequency)) {
|
|
|
|
gst_tuner_frequency_changed (GST_TUNER (v4l2object->element), channel,
|
|
|
|
frequency);
|
|
|
|
return TRUE;
|
|
|
|
}
|
2004-01-12 02:19:57 +00:00
|
|
|
}
|
2003-10-10 12:47:42 +00:00
|
|
|
}
|
2007-02-22 17:53:26 +00:00
|
|
|
|
2006-05-05 20:12:59 +00:00
|
|
|
return FALSE;
|
2003-10-10 12:47:42 +00:00
|
|
|
}
|
|
|
|
|
2006-05-11 17:59:59 +00:00
|
|
|
gulong
|
|
|
|
gst_v4l2_tuner_get_frequency (GstV4l2Object * v4l2object,
|
|
|
|
GstTunerChannel * channel)
|
2003-10-10 12:47:42 +00:00
|
|
|
{
|
|
|
|
GstV4l2TunerChannel *v4l2channel = GST_V4L2_TUNER_CHANNEL (channel);
|
2021-02-08 22:22:37 +00:00
|
|
|
guint32 chan;
|
2003-10-10 12:47:42 +00:00
|
|
|
gulong frequency = 0;
|
|
|
|
|
|
|
|
/* assert that we're opened and that we're using a known item */
|
2006-05-11 17:59:59 +00:00
|
|
|
g_return_val_if_fail (GST_V4L2_IS_OPEN (v4l2object), 0);
|
2003-10-10 12:47:42 +00:00
|
|
|
g_return_val_if_fail (GST_TUNER_CHANNEL_HAS_FLAG (channel,
|
2004-03-15 19:32:27 +00:00
|
|
|
GST_TUNER_CHANNEL_FREQUENCY), 0);
|
2006-05-11 17:59:59 +00:00
|
|
|
g_return_val_if_fail (gst_v4l2_tuner_contains_channel (v4l2object,
|
|
|
|
v4l2channel), 0);
|
2003-10-10 12:47:42 +00:00
|
|
|
|
2007-02-22 17:53:26 +00:00
|
|
|
if (v4l2object->get_in_out_func (v4l2object, &chan)) {
|
|
|
|
if (chan == GST_V4L2_TUNER_CHANNEL (channel)->index &&
|
|
|
|
GST_TUNER_CHANNEL_HAS_FLAG (channel, GST_TUNER_CHANNEL_FREQUENCY)) {
|
|
|
|
gst_v4l2_get_frequency (v4l2object, v4l2channel->tuner, &frequency);
|
|
|
|
}
|
2003-10-10 12:47:42 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
return frequency;
|
|
|
|
}
|
|
|
|
|
2006-05-11 17:59:59 +00:00
|
|
|
gint
|
|
|
|
gst_v4l2_tuner_signal_strength (GstV4l2Object * v4l2object,
|
|
|
|
GstTunerChannel * channel)
|
2003-10-10 12:47:42 +00:00
|
|
|
{
|
|
|
|
GstV4l2TunerChannel *v4l2channel = GST_V4L2_TUNER_CHANNEL (channel);
|
2021-02-08 22:22:37 +00:00
|
|
|
guint32 chan;
|
2003-10-10 12:47:42 +00:00
|
|
|
gulong signal = 0;
|
|
|
|
|
|
|
|
/* assert that we're opened and that we're using a known item */
|
2006-05-11 17:59:59 +00:00
|
|
|
g_return_val_if_fail (GST_V4L2_IS_OPEN (v4l2object), 0);
|
2003-10-10 12:47:42 +00:00
|
|
|
g_return_val_if_fail (GST_TUNER_CHANNEL_HAS_FLAG (channel,
|
2004-03-15 19:32:27 +00:00
|
|
|
GST_TUNER_CHANNEL_FREQUENCY), 0);
|
2006-05-11 17:59:59 +00:00
|
|
|
g_return_val_if_fail (gst_v4l2_tuner_contains_channel (v4l2object,
|
|
|
|
v4l2channel), 0);
|
2003-10-10 12:47:42 +00:00
|
|
|
|
2007-02-22 17:53:26 +00:00
|
|
|
if (v4l2object->get_in_out_func (v4l2object, &chan)) {
|
|
|
|
if (chan == GST_V4L2_TUNER_CHANNEL (channel)->index &&
|
|
|
|
GST_TUNER_CHANNEL_HAS_FLAG (channel, GST_TUNER_CHANNEL_FREQUENCY)) {
|
|
|
|
gst_v4l2_signal_strength (v4l2object, v4l2channel->tuner, &signal);
|
|
|
|
}
|
2003-10-10 12:47:42 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
return signal;
|
|
|
|
}
|