diff options
author | Hans Verkuil <hverkuil@xs4all.nl> | 2006-03-30 17:50:34 -0500 |
---|---|---|
committer | Mauro Carvalho Chehab <mchehab@infradead.org> | 2006-04-02 03:56:06 -0400 |
commit | 0020d3ef915fc01a0184bc96eeb3c240bded5d8e (patch) | |
tree | 89685985691405ae3c407b699a1f8cefa19425ce /drivers/media/video/msp3400-driver.h | |
parent | 9bc7400a9d01b1fe05c7f0200e7384e17794f6e4 (diff) |
V4L/DVB (3693): Fix msp3400c and bttv stereo/mono/bilingual detection/handling
- msp3400c did not detect the second carrier, thus being always mono.
- properly mute the msp3400c while detecting the carrier.
- fix checks on the presence of scart2/3 inputs and scart 2 output.
- implement proper audio mode fallbacks for msp3400c/d, identical to the
way msp3400g works.
- MODE_STEREO no longer produces dual languages when set for a bilingual
transmission, instead it falls back to LANG1. Use LANG1_LANG2 to hear
both languages of a bilingual transmission. This is much more intuitive
for the user and is in accordance with the preferred usage in the v4l2
specification.
- bttv tried to implement v4l2 calls with v4l1 calls to the i2c devices,
completely mangling the audmode/rxsubchans handling. v4l2 calls now do
v4l2 calls to the i2c devices.
- fixed broken i2c_vidiocschan in bttv.
- add start/end lines to LOG_STATUS.
Signed-off-by: Hans Verkuil <hverkuil@xs4all.nl>
Signed-off-by: Mauro Carvalho Chehab <mchehab@infradead.org>
Diffstat (limited to 'drivers/media/video/msp3400-driver.h')
-rw-r--r-- | drivers/media/video/msp3400-driver.h | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/drivers/media/video/msp3400-driver.h b/drivers/media/video/msp3400-driver.h index 1940748bb633..b5834938df7d 100644 --- a/drivers/media/video/msp3400-driver.h +++ b/drivers/media/video/msp3400-driver.h | |||
@@ -54,8 +54,10 @@ struct msp_state { | |||
54 | u8 has_radio; | 54 | u8 has_radio; |
55 | u8 has_headphones; | 55 | u8 has_headphones; |
56 | u8 has_ntsc_jp_d_k3; | 56 | u8 has_ntsc_jp_d_k3; |
57 | u8 has_scart2; | ||
58 | u8 has_scart3; | ||
57 | u8 has_scart4; | 59 | u8 has_scart4; |
58 | u8 has_scart23_in_scart2_out; | 60 | u8 has_scart2_out; |
59 | u8 has_scart2_out_volume; | 61 | u8 has_scart2_out_volume; |
60 | u8 has_i2s_conf; | 62 | u8 has_i2s_conf; |
61 | u8 has_subwoofer; | 63 | u8 has_subwoofer; |
@@ -98,7 +100,6 @@ int msp_read_dem(struct i2c_client *client, int addr); | |||
98 | int msp_read_dsp(struct i2c_client *client, int addr); | 100 | int msp_read_dsp(struct i2c_client *client, int addr); |
99 | int msp_reset(struct i2c_client *client); | 101 | int msp_reset(struct i2c_client *client); |
100 | void msp_set_scart(struct i2c_client *client, int in, int out); | 102 | void msp_set_scart(struct i2c_client *client, int in, int out); |
101 | void msp_set_mute(struct i2c_client *client); | ||
102 | void msp_set_audio(struct i2c_client *client); | 103 | void msp_set_audio(struct i2c_client *client); |
103 | int msp_sleep(struct msp_state *state, int timeout); | 104 | int msp_sleep(struct msp_state *state, int timeout); |
104 | 105 | ||