mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer.git
synced 2025-04-10 01:54:11 +00:00
gst-libs/gst/tuner/tunerchannel.h: - add a freq_multiplicator field to make the conversion between internal frequency...
Original commit message from CVS: * gst-libs/gst/tuner/tunerchannel.h: - add a freq_multiplicator field to make the conversion between internal frequency unit and Hz * sys/v4l/gstv4lelement.c: * sys/v4l2/gstv4l2element.c: - change default video device to /dev/video0 * sys/v4l/v4l_calls.c: * sys/v4l2/v4l2_calls.c: - we only expose frequency to the user in Hz instead of bastard v4lX unit (either 62.5kHz or 62.5Hz)
This commit is contained in:
parent
4b15b96f3f
commit
e9979e928c
2 changed files with 15 additions and 1 deletions
13
ChangeLog
13
ChangeLog
|
@ -1,3 +1,16 @@
|
|||
2004-05-31 Stephane Loeuillet <stephane.loeuillet@tiscali.fr>
|
||||
|
||||
* gst-libs/gst/tuner/tunerchannel.h:
|
||||
- add a freq_multiplicator field to make the conversion
|
||||
between internal frequency unit and Hz
|
||||
* sys/v4l/gstv4lelement.c:
|
||||
* sys/v4l2/gstv4l2element.c:
|
||||
- change default video device to /dev/video0
|
||||
* sys/v4l/v4l_calls.c:
|
||||
* sys/v4l2/v4l2_calls.c:
|
||||
- we only expose frequency to the user in Hz instead of
|
||||
bastard v4lX unit (either 62.5kHz or 62.5Hz)
|
||||
|
||||
2004-05-31 Jan Schmidt <thaytan@mad.scientist.com>
|
||||
* ext/vorbis/vorbisdec.c: (vorbis_dec_chain):
|
||||
Initialise b_o_s and e_o_s variables
|
||||
|
|
|
@ -43,7 +43,7 @@ typedef enum {
|
|||
GST_TUNER_CHANNEL_INPUT = (1<<0),
|
||||
GST_TUNER_CHANNEL_OUTPUT = (1<<1),
|
||||
GST_TUNER_CHANNEL_FREQUENCY = (1<<2),
|
||||
GST_TUNER_CHANNEL_AUDIO = (1<<3),
|
||||
GST_TUNER_CHANNEL_AUDIO = (1<<3)
|
||||
} GstTunerChannelFlags;
|
||||
|
||||
#define GST_TUNER_CHANNEL_HAS_FLAG(channel, flag) \
|
||||
|
@ -54,6 +54,7 @@ typedef struct _GstTunerChannel {
|
|||
|
||||
gchar *label;
|
||||
GstTunerChannelFlags flags;
|
||||
gfloat freq_multiplicator;
|
||||
gulong min_frequency,
|
||||
max_frequency;
|
||||
gint min_signal,
|
||||
|
|
Loading…
Reference in a new issue