diff options
author | Alex Beregszaszi <alex@rtfs.hu> | 2003-06-20 15:51:24 +0000 |
---|---|---|
committer | Alex Beregszaszi <alex@rtfs.hu> | 2003-06-20 15:51:24 +0000 |
commit | cad6f6cdee4f2fc5b7297074c384cbd27025eec2 (patch) | |
tree | 9eb218b0bfc50c7ad2f6478b14252a2e4ebf284a /libavformat/dv1394.c | |
parent | 377ea75708e05b8cb4285c15362ee0a262947e93 (diff) | |
download | ffmpeg-cad6f6cdee4f2fc5b7297074c384cbd27025eec2.tar.gz |
1000l
Originally committed as revision 1979 to svn://svn.ffmpeg.org/ffmpeg/trunk
Diffstat (limited to 'libavformat/dv1394.c')
-rw-r--r-- | libavformat/dv1394.c | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/libavformat/dv1394.c b/libavformat/dv1394.c index 2eff220f68..5e8b83d2b4 100644 --- a/libavformat/dv1394.c +++ b/libavformat/dv1394.c @@ -91,21 +91,21 @@ static int dv1394_read_header(AVFormatContext * context, AVFormatParameters * ap return -ENOMEM; } - dv->width = DV1394_WIDTH; - dv->height = DV1394_HEIGHT; + /* FIXME: Need a format change parameter */ + dv->format = DV1394_NTSC; if (ap->channel) dv->channel = ap->channel; else dv->channel = DV1394_DEFAULT_CHANNEL; - /* FIXME: Need a format change parameter */ - dv->format = DV1394_NTSC; - + dv->width = DV1394_WIDTH; if (dv->format == DV1394_NTSC) { + dv->height = DV1394_NTSC_HEIGHT; dv->frame_size = DV1394_NTSC_FRAME_SIZE; dv->frame_rate = 30; } else { + dv->height = DV1394_PAL_HEIGHT; dv->frame_size = DV1394_PAL_FRAME_SIZE; dv->frame_rate = 25; } |