mirror of
https://git.ffmpeg.org/ffmpeg.git
synced 2024-12-27 01:42:20 +00:00
avcodec_encode_audio2: Increase the audio buffer size.
Fixes Ticket1104 Signed-off-by: Michael Niedermayer <michaelni@gmx.at>
This commit is contained in:
parent
2b07f572af
commit
fc8ed1117e
@ -1024,7 +1024,7 @@ int attribute_align_arg avcodec_encode_audio2(AVCodecContext *avctx,
|
||||
implement encode2() */
|
||||
buf_size = 2 * avctx->frame_size * avctx->channels *
|
||||
av_get_bytes_per_sample(avctx->sample_fmt);
|
||||
buf_size += FF_MIN_BUFFER_SIZE;
|
||||
buf_size += 2*FF_MIN_BUFFER_SIZE;
|
||||
}
|
||||
}
|
||||
if ((ret = ff_alloc_packet(avpkt, buf_size)))
|
||||
|
Loading…
Reference in New Issue
Block a user