forked from FFmpeg/FFmpeg
packets with half pcm samples are invalid
Originally committed as revision 7900 to svn://svn.ffmpeg.org/ffmpeg/trunk
This commit is contained in:
parent
7e0429129c
commit
b2a581dc71
1 changed files with 6 additions and 0 deletions
|
@ -410,6 +410,12 @@ static int pcm_decode_frame(AVCodecContext *avctx,
|
|||
samples = data;
|
||||
src = buf;
|
||||
|
||||
n= av_get_bits_per_sample(avctx->codec_id)/8;
|
||||
if(n && buf_size % n){
|
||||
av_log(avctx, AV_LOG_ERROR, "invalid PCM packet\n");
|
||||
return -1;
|
||||
}
|
||||
|
||||
buf_size= FFMIN(buf_size, *data_size/2);
|
||||
*data_size=0;
|
||||
|
||||
|
|
Loading…
Add table
Reference in a new issue