mirror of
https://gitee.com/openharmony/third_party_ffmpeg
synced 2024-11-28 21:50:37 +00:00
Remove duplicate ;
Originally committed as revision 12149 to svn://svn.ffmpeg.org/ffmpeg/trunk
This commit is contained in:
parent
721052e981
commit
816ebf9320
@ -136,7 +136,7 @@ static unsigned int mszh_decomp(unsigned char * srcptr, int srclen, unsigned cha
|
||||
} 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 *avctx, void *data, int *data_size, const
|
||||
}
|
||||
}
|
||||
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;
|
||||
|
Loading…
Reference in New Issue
Block a user