# HG changeset patch # User michael # Date 1066645993 0 # Node ID 0b3ec5cba8459d2de7a38e711772fbdfc7d34757 # Parent eccf0c3e32893e50c105aa92fe604fb8b19a3424 bottom_field_first -> top_field_first diff -r eccf0c3e3289 -r 0b3ec5cba845 yuv4mpeg.c --- 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 */