1
mirror of https://git.videolan.org/git/ffmpeg.git synced 2024-08-20 16:25:04 +02:00

Remove useless check, patch by Benoit Fouet, benoit.fouet purplelabs com.

Originally committed as revision 7821 to svn://svn.ffmpeg.org/ffmpeg/trunk
This commit is contained in:
Benoit Fouet 2007-02-05 09:11:10 +00:00 committed by Diego Biurrun
parent 4305a4ef0d
commit 487747de57

View File

@ -436,11 +436,6 @@ static int amr_nb_decode_frame(AVCodecContext * avctx,
/* av_log(NULL,AV_LOG_DEBUG,"amr_decode_frame buf=%p buf_size=%d frameCount=%d!!\n",buf,buf_size,s->frameCount); */
if(buf_size==0) {
/* nothing to do */
return 0;
}
dec_mode = (buf[0] >> 3) & 0x000F;
packet_size = block_size[dec_mode]+1;