Commit d37a7603 authored by reimar's avatar reimar

Remove duplicate ;


git-svn-id: file:///var/local/repositories/ffmpeg/trunk@12149 9553f0bf-9b14-0410-a0b8-cfaf0461ba5b
parent df7234d9
...@@ -136,7 +136,7 @@ static unsigned int mszh_decomp(unsigned char * srcptr, int srclen, unsigned cha ...@@ -136,7 +136,7 @@ static unsigned int mszh_decomp(unsigned char * srcptr, int srclen, unsigned cha
} else { } else {
ofs = *(srcptr++); ofs = *(srcptr++);
cnt = *(srcptr++); cnt = *(srcptr++);
ofs += cnt * 256;; ofs += cnt * 256;
cnt = ((cnt >> 3) & 0x1f) + 1; cnt = ((cnt >> 3) & 0x1f) + 1;
ofs &= 0x7ff; ofs &= 0x7ff;
srclen -= 2; srclen -= 2;
...@@ -302,7 +302,7 @@ static int decode_frame(AVCodecContext *avctx, void *data, int *data_size, const ...@@ -302,7 +302,7 @@ static int decode_frame(AVCodecContext *avctx, void *data, int *data_size, const
} }
} }
encoded = c->decomp_buf; encoded = c->decomp_buf;
len = c->decomp_size;; len = c->decomp_size;
#else #else
av_log(avctx, AV_LOG_ERROR, "BUG! Zlib support not compiled in frame decoder.\n"); av_log(avctx, AV_LOG_ERROR, "BUG! Zlib support not compiled in frame decoder.\n");
return -1; return -1;
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment