mirror of
https://github.com/FFmpeg/FFmpeg.git
synced 2025-05-13 21:26:33 +02:00
avconv: Use the size of the decode sample format when allocating the audio samples buffer.
This commit is contained in:
parent
d3c1d37a90
commit
af3c06b4db
4
avconv.c
4
avconv.c
@ -1573,8 +1573,8 @@ static int output_packet(InputStream *ist, int ist_index,
|
|||||||
if (ist->decoding_needed) {
|
if (ist->decoding_needed) {
|
||||||
switch(ist->st->codec->codec_type) {
|
switch(ist->st->codec->codec_type) {
|
||||||
case AVMEDIA_TYPE_AUDIO:{
|
case AVMEDIA_TYPE_AUDIO:{
|
||||||
if(pkt && samples_size < FFMAX(pkt->size*sizeof(*samples), AVCODEC_MAX_AUDIO_FRAME_SIZE)) {
|
if(pkt && samples_size < FFMAX(pkt->size * bps, AVCODEC_MAX_AUDIO_FRAME_SIZE)) {
|
||||||
samples_size = FFMAX(pkt->size*sizeof(*samples), AVCODEC_MAX_AUDIO_FRAME_SIZE);
|
samples_size = FFMAX(pkt->size * bps, AVCODEC_MAX_AUDIO_FRAME_SIZE);
|
||||||
av_free(samples);
|
av_free(samples);
|
||||||
samples= av_malloc(samples_size);
|
samples= av_malloc(samples_size);
|
||||||
}
|
}
|
||||||
|
Loading…
x
Reference in New Issue
Block a user