[Ffmpeg-cvslog] r7847 - trunk/libavcodec/vc1.c

kostya subversion
Tue Feb 6 08:07:29 CET 2007


Author: kostya
Date: Tue Feb  6 08:07:29 2007
New Revision: 7847

Modified:
   trunk/libavcodec/vc1.c

Log:
Wrong flag tested

Modified: trunk/libavcodec/vc1.c
==============================================================================
--- trunk/libavcodec/vc1.c	(original)
+++ trunk/libavcodec/vc1.c	Tue Feb  6 08:07:29 2007
@@ -1646,7 +1646,7 @@
     if(v->tfcntrflag)
         get_bits(gb, 8);
     if(v->broadcast) {
-        if(!v->interlace || v->panscanflag) {
+        if(!v->interlace || v->psf) {
             v->rptfrm = get_bits(gb, 2);
         } else {
             v->tff = get_bits1(gb);




More information about the ffmpeg-cvslog mailing list