[Ffmpeg-cvslog] r6953 - trunk/libavcodec/h263.c
michael
subversion
Thu Nov 9 02:23:47 CET 2006
Author: michael
Date: Thu Nov 9 02:23:47 2006
New Revision: 6953
Modified:
trunk/libavcodec/h263.c
Log:
10000l to myself, fixing regression test failure
Modified: trunk/libavcodec/h263.c
==============================================================================
--- trunk/libavcodec/h263.c (original)
+++ trunk/libavcodec/h263.c Thu Nov 9 02:23:47 2006
@@ -3196,7 +3196,7 @@
}
while(v<=0xFF){
- if(s->pict_type==B_TYPE || (v>>(8-s->pict_type)!=1))
+ if(s->pict_type==B_TYPE || (v>>(8-s->pict_type)!=1) || s->partitioned_frame)
break;
skip_bits(&s->gb, 8+s->pict_type);
bits_count+= 8+s->pict_type;
More information about the ffmpeg-cvslog
mailing list