to be more precise

Originally committed as revision 1967 to svn://svn.ffmpeg.org/ffmpeg/trunk
This commit is contained in:
Nick Kurshev 2003-06-17 07:48:50 +00:00
parent 860208a400
commit c3b4e0eb15
1 changed files with 1 additions and 1 deletions

View File

@ -440,7 +440,7 @@ static int ra288_decode_frame(AVCodecContext * avctx,
}
/* Phase 1: decode */
bret = ptb-buf;
for(z=0;z<bret;z+=cfs) { decode_block(avctx,&tb[z],(signed short *)data); data += 320; }
for(z=0;z<bret;z+=cfs) data=decode_block(avctx,&tb[z],(signed short *)data);
*data_size = data - datao;
return bret;
}