diff options
author | Hans Verkuil <devnull@localhost> | 2006-01-15 17:04:52 +0000 |
---|---|---|
committer | Hans Verkuil <devnull@localhost> | 2006-01-15 17:04:52 +0000 |
commit | ee85df059556084843983da015dd2f36f36300f7 (patch) | |
tree | b4865cafe27973f5db525e50b5c16aa30af09340 /v4l | |
parent | c8ca1560435fc794741898345a9241a1bdc5b407 (diff) | |
download | mediapointer-dvb-s2-ee85df059556084843983da015dd2f36f36300f7.tar.gz mediapointer-dvb-s2-ee85df059556084843983da015dd2f36f36300f7.tar.bz2 |
Separate tv & radio freqs, fix cb/freq transmit order for tuners that need this.
- Moved MSP_SET_MATRIX to v4l2-common.h
- Fix typos and integer overflows in tea5767.c
- Split old freq field into a tv_freq and a radio_freq. Prevents
that a radio tuner is initialized with a tv frequency or vice versa.
- When switching to radio mode initialize the tuner with the last
used radio frequency (this was already done for the TV mode).
As a result of these changes the tuner module now remembers the
last set radio and TV frequencies, which is what you would expect
to happen.
- Move out of range frequencies to the closest valid frequency as per
v4l2 API spec.
- Fix incorrect initial radio frequency (multiplier is 16000, not 16)
- Add boundary check for out of range frequencies.
- Use new flag to check if the order of the CB and freq. depends on
the last set frequency. That is needed for some tuners or you can
get static as a result. The flag is added for those tuners where I know
that the datasheet indicates that this is necessary.
- For this new check use the last set div value, not the last frequency
as radio frequencies are always much higher due to the 16000 multiplier.
Signed-off-by: Hans Verkuil <hverkuil@xs4all.nl>
Diffstat (limited to 'v4l')
-rw-r--r-- | v4l/ChangeLog | 50 |
1 files changed, 50 insertions, 0 deletions
diff --git a/v4l/ChangeLog b/v4l/ChangeLog index ebacebb3a..5f90ec8d0 100644 --- a/v4l/ChangeLog +++ b/v4l/ChangeLog @@ -1,3 +1,53 @@ +2006-01-15 16:47 hverkuil + + * linux/drivers/media/video/msp3400.h: + - Moved MSP_SET_MATRIX to v4l2-common.h + * linux/drivers/media/video/mt20xx.c: (mt2032_init), (mt2050_init), + (microtune_init): + * linux/drivers/media/video/tda8290.c: (tda8290_init): + - Renamed tv_freq/radio_freq to set_tv_freq/set_radio_freq + * linux/drivers/media/video/tea5767.c: (set_radio_freq), + (tea5767_tuner_init): + - Renamed tv_freq/radio_freq to set_tv_freq/set_radio_freq + - Fix typos + - Fix integer overflows + * linux/drivers/media/video/tuner-core.c: (set_tv_freq), + (set_radio_freq), (set_freq), (set_type), (tuner_status), + (tuner_attach), (tuner_command), (tuner_resume): + - Split old freq field into a tv_freq and a radio_freq. Prevents + that a radio tuner is initialized with a tv frequency or vice + versa. + - When switching to radio mode initialize the tuner with the last + used radio frequency (this was already done for the TV mode). + As a result of these changes the tuner module now remembers the + last set radio and TV frequencies, which is what you would expect + to happen. + - Move out of range frequencies to the closest valid frequency as per + v4l2 API spec. + - Fix incorrect initial radio frequency (multiplier is 16000, not 16) + * linux/drivers/media/video/tuner-simple.c: (default_set_tv_freq), + (default_set_radio_freq), (default_tuner_init): + - Add boundary check for out of range frequencies. + - Use new flag to check if the order of the CB and freq. depends on + the last set frequency. That is needed for some tuners or you can + get static as a result. + - For this new check use the last set div value, not the last frequency + as radio frequencies always much higher due to the 16000 multiplier. + - Also add this check when setting the radio frequency. + * linux/drivers/media/video/tuner-types.c: + - Add the new cb_first_if_lower_freq flag for those tuners where the + datasheet indicates that this is necessary. + * linux/drivers/media/video/v4l2-common.c: + - Add MSP_SET_MATRIX + * linux/include/media/tuner-types.h: + - Add cb_first_if_lower_freq flag + * linux/include/media/tuner.h: + - Split old freq value, add last_div field + * linux/include/media/v4l2-common.h: + - Add MSP_SET_MATRIX + + Signed-off-by: Hans Verkuil <hverkuil@xs4all.nl> + 2006-01-15 14:43 mkrufky * linux/include/media/tuner-types.h: |