Browse Source

gsm: use av_get_bytes_per_sample() in frame_bytes calculation

tags/n0.9
Justin Ruggles 14 years ago
parent
commit
d9c6eece21
1 changed files with 2 additions and 1 deletions
  1. +2
    -1
      libavcodec/gsmdec.c

+ 2
- 1
libavcodec/gsmdec.c 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;


Loading…
Cancel
Save