1
0
mirror of https://github.com/FFmpeg/FFmpeg.git synced 2024-12-23 12:43:46 +02:00

gsm: use av_get_bytes_per_sample() in frame_bytes calculation

This commit is contained in:
Justin Ruggles 2011-10-28 00:31:11 -04:00
parent 87c57d807f
commit d9c6eece21

View File

@ -58,7 +58,8 @@ static int gsm_decode_frame(AVCodecContext *avctx, void *data,
const uint8_t *buf = avpkt->data;
int buf_size = avpkt->size;
int16_t *samples = data;
int frame_bytes = 2 * avctx->frame_size;
int frame_bytes = avctx->frame_size *
av_get_bytes_per_sample(avctx->sample_fmt);
if (*data_size < frame_bytes)
return -1;