summaryrefslogtreecommitdiff
path: root/libavcodec/g723_1dec.c
diff options
context:
space:
mode:
authorPaul B Mahol <onemda@gmail.com>2019-03-07 01:58:43 +0100
committerPaul B Mahol <onemda@gmail.com>2019-03-07 01:58:43 +0100
commit0ce759defdab23d35abd8751a0f837c6aaa6ad12 (patch)
treec14b49e503d70d0dc42cccbcf12a0ae7ced17b95 /libavcodec/g723_1dec.c
parent7b966af930d46494426cd33d7bd8b767e8bfff9e (diff)
avcodec/g723_1dec: actually decode second channel
Diffstat (limited to 'libavcodec/g723_1dec.c')
-rw-r--r--libavcodec/g723_1dec.c3
1 files changed, 2 insertions, 1 deletions
diff --git a/libavcodec/g723_1dec.c b/libavcodec/g723_1dec.c
index 676c4bbac3..d8bc3f97ac 100644
--- a/libavcodec/g723_1dec.c
+++ b/libavcodec/g723_1dec.c
@@ -883,7 +883,8 @@ static int g723_1_decode_frame(AVCodecContext *avctx, void *data,
G723_1_ChannelContext *p = &s->ch[ch];
int16_t *audio = p->audio;
- if (unpack_bitstream(p, buf, buf_size) < 0) {
+ if (unpack_bitstream(p, buf + ch * (buf_size / avctx->channels),
+ buf_size / avctx->channels) < 0) {
bad_frame = 1;
if (p->past_frame_type == ACTIVE_FRAME)
p->cur_frame_type = ACTIVE_FRAME;