[FFmpeg-cvslog] r12149 - trunk/libavcodec/lcldec.c
reimar
subversion
Tue Feb 19 22:46:40 CET 2008
Author: reimar
Date: Tue Feb 19 22:46:40 2008
New Revision: 12149
Log:
Remove duplicate ;
Modified:
trunk/libavcodec/lcldec.c
Modified: trunk/libavcodec/lcldec.c
==============================================================================
--- trunk/libavcodec/lcldec.c (original)
+++ trunk/libavcodec/lcldec.c Tue Feb 19 22:46:40 2008
@@ -136,7 +136,7 @@ static unsigned int mszh_decomp(unsigned
} else {
ofs = *(srcptr++);
cnt = *(srcptr++);
- ofs += cnt * 256;;
+ ofs += cnt * 256;
cnt = ((cnt >> 3) & 0x1f) + 1;
ofs &= 0x7ff;
srclen -= 2;
@@ -302,7 +302,7 @@ static int decode_frame(AVCodecContext *
}
}
encoded = c->decomp_buf;
- len = c->decomp_size;;
+ len = c->decomp_size;
#else
av_log(avctx, AV_LOG_ERROR, "BUG! Zlib support not compiled in frame decoder.\n");
return -1;
More information about the ffmpeg-cvslog
mailing list