[FFmpeg-cvslog] r10097 - trunk/libavcodec/4xm.c
michael
subversion
Mon Aug 13 03:06:04 CEST 2007
Author: michael
Date: Mon Aug 13 03:06:04 2007
New Revision: 10097
Log:
fix type 3 aka skiped blocks for old version
Modified:
trunk/libavcodec/4xm.c
Modified: trunk/libavcodec/4xm.c
==============================================================================
--- trunk/libavcodec/4xm.c (original)
+++ trunk/libavcodec/4xm.c Mon Aug 13 03:06:04 2007
@@ -314,6 +314,8 @@ static void decode_p_block(FourXContext
log2w--;
decode_p_block(f, dst , src , log2w, log2h, stride);
decode_p_block(f, dst + (1<<log2w), src + (1<<log2w), log2w, log2h, stride);
+ }else if(code == 3 && f->version==0){
+ mcdc(dst, src, log2w, h, stride, 1, 0);
}else if(code == 4){
src += f->mv[ *f->bytestream++ ];
mcdc(dst, src, log2w, h, stride, 1, le2me_16(*f->wordstream++));
More information about the ffmpeg-cvslog
mailing list