mirror of
https://github.com/FFmpeg/FFmpeg.git
synced 2025-06-27 02:52:25 +08:00
ac3dec: return smaller of buf_size and frame_size instead of always returning
frame_size. Originally committed as revision 22950 to svn://svn.ffmpeg.org/ffmpeg/trunk
This commit is contained in:
@ -1420,7 +1420,7 @@ static int ac3_decode_frame(AVCodecContext * avctx, void *data, int *data_size,
|
|||||||
out_samples += 256 * s->out_channels;
|
out_samples += 256 * s->out_channels;
|
||||||
}
|
}
|
||||||
*data_size = s->num_blocks * 256 * avctx->channels * sizeof (int16_t);
|
*data_size = s->num_blocks * 256 * avctx->channels * sizeof (int16_t);
|
||||||
return s->frame_size;
|
return FFMIN(buf_size, s->frame_size);
|
||||||
}
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
|
Reference in New Issue
Block a user