diff options
author | James Almer <jamrial@gmail.com> | 2021-08-25 10:46:51 -0300 |
---|---|---|
committer | James Almer <jamrial@gmail.com> | 2022-03-15 09:42:45 -0300 |
commit | 35789608ae823bdbf6fda47c98b80ca84df48463 (patch) | |
tree | bcf2e397e075302f6188717e2bd98c181922c578 /libavcodec | |
parent | 6114a1f71d0928a5502ad144602a464e98443c8d (diff) | |
download | ffmpeg-35789608ae823bdbf6fda47c98b80ca84df48463.tar.gz |
siren: convert to new channel layout API
Signed-off-by: James Almer <jamrial@gmail.com>
Diffstat (limited to 'libavcodec')
-rw-r--r-- | libavcodec/siren.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/libavcodec/siren.c b/libavcodec/siren.c index bdb249144b..add1773069 100644 --- a/libavcodec/siren.c +++ b/libavcodec/siren.c @@ -398,8 +398,8 @@ static av_cold int siren_init(AVCodecContext *avctx) s->imdct_prev = s->imdct_buf[2]; s->window = s->imdct_buf[3]; - avctx->channels = 1; - avctx->channel_layout = AV_CH_LAYOUT_MONO; + av_channel_layout_uninit(&avctx->ch_layout); + avctx->ch_layout = (AVChannelLayout)AV_CHANNEL_LAYOUT_MONO; avctx->sample_fmt = AV_SAMPLE_FMT_FLT; s->rate_control_possibilities = 16; |