mirror of
https://github.com/FFmpeg/FFmpeg.git
synced 2025-01-13 21:28:01 +02:00
Do not discard truncated packets.
Based on a patch by Maksym Veremeyenko verem DOT m1stereo AT tv Originally committed as revision 18626 to svn://svn.ffmpeg.org/ffmpeg/trunk
This commit is contained in:
parent
b40831715a
commit
012e4f5a18
@ -361,8 +361,11 @@ static int pcm_decode_frame(AVCodecContext *avctx,
|
|||||||
n = avctx->channels * sample_size;
|
n = avctx->channels * sample_size;
|
||||||
|
|
||||||
if(n && buf_size % n){
|
if(n && buf_size % n){
|
||||||
|
if (buf_size < n) {
|
||||||
av_log(avctx, AV_LOG_ERROR, "invalid PCM packet\n");
|
av_log(avctx, AV_LOG_ERROR, "invalid PCM packet\n");
|
||||||
return -1;
|
return -1;
|
||||||
|
}else
|
||||||
|
buf_size -= buf_size % n;
|
||||||
}
|
}
|
||||||
|
|
||||||
buf_size= FFMIN(buf_size, *data_size/2);
|
buf_size= FFMIN(buf_size, *data_size/2);
|
||||||
|
Loading…
Reference in New Issue
Block a user