mirror of
https://gitee.com/openharmony/third_party_ffmpeg
synced 2024-11-24 03:39:45 +00:00
sonicdec: fix frame size
Signed-off-by: Michael Niedermayer <michaelni@gmx.at>
This commit is contained in:
parent
1426291eb8
commit
6ec037c5a9
@ -880,7 +880,7 @@ static int sonic_decode_frame(AVCodecContext *avctx,
|
||||
|
||||
if (buf_size == 0) return 0;
|
||||
|
||||
s->frame.nb_samples = s->frame_size;
|
||||
s->frame.nb_samples = s->frame_size / avctx->channels;
|
||||
if ((ret = ff_get_buffer(avctx, &s->frame, 0)) < 0)
|
||||
return ret;
|
||||
samples = (int16_t *)s->frame.data[0];
|
||||
|
Loading…
Reference in New Issue
Block a user