changeset 287:0b3ec5cba845 libavformat

bottom_field_first -> top_field_first
author michael
date Mon, 20 Oct 2003 10:33:13 +0000
parents eccf0c3e3289
children 981b0b3c95dd
files yuv4mpeg.c
diffstat 1 files changed, 1 insertions(+), 1 deletions(-) [+]
line wrap: on
line diff
--- a/yuv4mpeg.c	Sun Oct 19 20:57:47 2003 +0000
+++ b/yuv4mpeg.c	Mon Oct 20 10:33:13 2003 +0000
@@ -54,7 +54,7 @@
     
     inter = 'p'; /* progressive is the default */
     if (st->codec.coded_frame && st->codec.coded_frame->interlaced_frame) {
-        inter = st->codec.coded_frame->bottom_field_first ? 'b' : 't';
+        inter = st->codec.coded_frame->top_field_first ? 't' : 'b';
     }
 
     /* construct stream header, if this is the first frame */