[FFmpeg-soc] [soc]: r1351 - rv40/rv40.c
kostya
subversion at mplayerhq.hu
Sun Sep 16 17:11:50 CEST 2007
Author: kostya
Date: Sun Sep 16 17:11:50 2007
New Revision: 1351
Log:
Fix slice end check
Modified:
rv40/rv40.c
Modified: rv40/rv40.c
==============================================================================
--- rv40/rv40.c (original)
+++ rv40/rv40.c Sun Sep 16 17:11:50 2007
@@ -1689,7 +1689,7 @@ static int rv40_decode_macroblock(RV40De
static int check_slice_end(RV40DecContext *r, MpegEncContext *s)
{
int bits;
- if(r->skip_blocks)
+ if(r->skip_blocks > 1)
return 0;
if(s->mb_y >= s->mb_height)
return 1;
More information about the FFmpeg-soc
mailing list