diff options
Diffstat (limited to 'linux/drivers/media/dvb/av7110')
-rw-r--r-- | linux/drivers/media/dvb/av7110/av7110.c | 7 |
1 files changed, 7 insertions, 0 deletions
diff --git a/linux/drivers/media/dvb/av7110/av7110.c b/linux/drivers/media/dvb/av7110/av7110.c index a2f8448aa..eae95837c 100644 --- a/linux/drivers/media/dvb/av7110/av7110.c +++ b/linux/drivers/media/dvb/av7110/av7110.c @@ -4779,6 +4779,9 @@ void av7110_dec_use(struct saa7146_dev* adap) #endif +/* FIXME: 0x3a seems to be a little too small, you'll notice a small black bar on + some channels. perhaps increase this to 0x42? looks good for me, but is not + based on facts... (MiHu) */ static struct saa7146_standard standard[] = { { "PAL", V4L2_STD_PAL, 0x15, 288, 576, 0x3a, 720, 721, 576, 768 }, @@ -4792,6 +4795,10 @@ struct saa7146_extension av7110_extension = { .audios = 1, .capabilities = 0, + /* FIXME: SAA7146_EXT_PROVIDES_VIDEO not true for budget cards, + separate these two... */ + .flags = SAA7146_EXT_PROVIDES_VIDEO|SAA7146_EXT_SWAP_ODD_EVEN + .devices = &sub_data[0], .module = THIS_MODULE, |