diff options
author | Michael Hunold <devnull@localhost> | 2003-01-06 17:47:29 +0000 |
---|---|---|
committer | Michael Hunold <devnull@localhost> | 2003-01-06 17:47:29 +0000 |
commit | bf378e1286166765aea8a9b28caa84bf6488a768 (patch) | |
tree | 68d78677c355fb1bc78c64339e08035b88335321 /linux/drivers/media | |
parent | 23198c11bc5d221469b73ce5def50b7d4dbbff81 (diff) | |
download | mediapointer-dvb-s2-bf378e1286166765aea8a9b28caa84bf6488a768.tar.gz mediapointer-dvb-s2-bf378e1286166765aea8a9b28caa84bf6488a768.tar.bz2 |
Fixed the "gray bar on the left side of the video window after
startup" bug.
Diffstat (limited to 'linux/drivers/media')
-rw-r--r-- | linux/drivers/media/common/saa7146_video.c | 8 |
1 files changed, 1 insertions, 7 deletions
diff --git a/linux/drivers/media/common/saa7146_video.c b/linux/drivers/media/common/saa7146_video.c index c5dfca244..cb088dd35 100644 --- a/linux/drivers/media/common/saa7146_video.c +++ b/linux/drivers/media/common/saa7146_video.c @@ -1210,12 +1210,6 @@ struct videobuf_queue_ops video_qops = { /* file operations */ static -struct saa7146_standard standard[] = { - { "PAL-BG", V4L2_STD_PAL_BG, SAA7146_PAL_VALUES }, -}; - - -static void video_init(struct saa7146_dev *dev, struct saa7146_vv *vv) { INIT_LIST_HEAD(&vv->video_q.queue); @@ -1226,7 +1220,7 @@ void video_init(struct saa7146_dev *dev, struct saa7146_vv *vv) vv->video_q.dev = dev; /* set some default values */ - vv->standard = &standard[0]; + vv->standard = &dev->ext->ext_vv_data->stds[0]; /* FIXME: what's this? */ vv->current_hps_source = SAA7146_HPS_SOURCE_PORT_A; |