From 9dad924e22dc0e1a09013b588b43051b5baf428d Mon Sep 17 00:00:00 2001 From: Michael Niedermayer Date: Mon, 20 Oct 2003 10:33:13 +0000 Subject: bottom_field_first -> top_field_first Originally committed as revision 2402 to svn://svn.ffmpeg.org/ffmpeg/trunk --- libavcodec/dv.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'libavcodec/dv.c') diff --git a/libavcodec/dv.c b/libavcodec/dv.c index 419d2de..c969e93 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; -- cgit v1.1