From: Roberto Togni Date: Sun, 18 Nov 2007 22:58:40 +0000 (+0000) Subject: Cleanup: remove ssize X-Git-Tag: v0.5~6925 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=6887cb8bc54d75160f5cb67bb7914e64be3e7c59;p=platform%2Fupstream%2Flibav.git Cleanup: remove ssize Originally committed as revision 11054 to svn://svn.ffmpeg.org/ffmpeg/trunk --- diff --git a/libavformat/rmdec.c b/libavformat/rmdec.c index 4fef4cd..5c36aa5 100644 --- a/libavformat/rmdec.c +++ b/libavformat/rmdec.c @@ -454,7 +454,6 @@ static int rm_assemble_video_frame(AVFormatContext *s, RMContext *rm, AVPacket * ByteIOContext *pb = &s->pb; int hdr, seq, pic_num, len2, pos; int type; - int ssize; hdr = get_byte(pb); len--; type = hdr >> 6; @@ -494,10 +493,9 @@ static int rm_assemble_video_frame(AVFormatContext *s, RMContext *rm, AVPacket * if((seq & 0x7F) == 1 || rm->curpic_num != pic_num){ rm->slices = ((hdr & 0x3F) << 1) + 1; - ssize = len2 + 8*rm->slices + 1; - if(!(rm->videobuf = av_realloc(rm->videobuf, ssize))) + rm->videobufsize = len2 + 8*rm->slices + 1; + if(!(rm->videobuf = av_realloc(rm->videobuf, rm->videobufsize))) return AVERROR(ENOMEM); - rm->videobufsize = ssize; rm->videobufpos = 8*rm->slices + 1; rm->cur_slice = 0; rm->curpic_num = pic_num;