diff options
author | Zane van Iperen <zane@zanevaniperen.com> | 2020-10-14 22:43:03 +1000 |
---|---|---|
committer | Zane van Iperen <zane@zanevaniperen.com> | 2020-10-17 09:36:06 +1000 |
commit | ed1cfb8e318e052aa1b096c48a12c656b3df9521 (patch) | |
tree | 66bc81bfb4879c0601913162815cd9a294d38f8f | |
parent | eb75a80dc8cb2578941608d9738cff6fafc4b4fa (diff) | |
download | ffmpeg-ed1cfb8e318e052aa1b096c48a12c656b3df9521.tar.gz |
avcodec/adpcm_yamaha: support custom block size for encoding
Signed-off-by: Zane van Iperen <zane@zanevaniperen.com>
-rw-r--r-- | libavcodec/adpcmenc.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/libavcodec/adpcmenc.c b/libavcodec/adpcmenc.c index f21edfc3e3..6c07142a65 100644 --- a/libavcodec/adpcmenc.c +++ b/libavcodec/adpcmenc.c @@ -142,8 +142,8 @@ static av_cold int adpcm_encode_init(AVCodecContext *avctx) } break; case AV_CODEC_ID_ADPCM_YAMAHA: - avctx->frame_size = BLKSIZE * 2 / avctx->channels; - avctx->block_align = BLKSIZE; + avctx->frame_size = s->block_size * 2 / avctx->channels; + avctx->block_align = s->block_size; break; case AV_CODEC_ID_ADPCM_SWF: if (avctx->sample_rate != 11025 && |