diff options
author | Michael Niedermayer <michaelni@gmx.at> | 2003-10-20 10:33:13 +0000 |
---|---|---|
committer | Michael Niedermayer <michaelni@gmx.at> | 2003-10-20 10:33:13 +0000 |
commit | 9dad924e22dc0e1a09013b588b43051b5baf428d (patch) | |
tree | 2176caeb0764fcca678c7480cbcc6c0ed85e2119 /libavcodec/dv.c | |
parent | fa384dcc8100ef973a702b9e5bc3236571c97750 (diff) | |
download | ffmpeg-9dad924e22dc0e1a09013b588b43051b5baf428d.tar.gz |
bottom_field_first -> top_field_first
Originally committed as revision 2402 to svn://svn.ffmpeg.org/ffmpeg/trunk
Diffstat (limited to 'libavcodec/dv.c')
-rw-r--r-- | libavcodec/dv.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/libavcodec/dv.c b/libavcodec/dv.c index 419d2de524..c969e937ba 100644 --- a/libavcodec/dv.c +++ b/libavcodec/dv.c @@ -855,7 +855,7 @@ static int dvvideo_decode_frame(AVCodecContext *avctx, return -1; } s->picture.interlaced_frame = 1; - s->picture.bottom_field_first = 1; + s->picture.top_field_first = 0; /* for each DIF segment */ mb_pos_ptr = s->sys->video_place; |