From fbd6e2bab4382a8ccd08f3df54fe38501164a9a0 Mon Sep 17 00:00:00 2001 From: Vittorio Giovara Date: Wed, 29 Mar 2017 18:23:04 +0200 Subject: [PATCH] dss_sp: convert to new channel layout API Signed-off-by: Vittorio Giovara Signed-off-by: James Almer --- libavcodec/dss_sp.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/libavcodec/dss_sp.c b/libavcodec/dss_sp.c index 050b412496..c8da3bffaf 100644 --- a/libavcodec/dss_sp.c +++ b/libavcodec/dss_sp.c @@ -290,10 +290,10 @@ static const int32_t dss_sp_sinc[67] = { static av_cold int dss_sp_decode_init(AVCodecContext *avctx) { DssSpContext *p = avctx->priv_data; - avctx->channel_layout = AV_CH_LAYOUT_MONO; avctx->sample_fmt = AV_SAMPLE_FMT_S16; - avctx->channels = 1; avctx->sample_rate = 11025; + av_channel_layout_uninit(&avctx->ch_layout); + avctx->ch_layout = (AVChannelLayout)AV_CHANNEL_LAYOUT_MONO; p->pulse_dec_mode = 1; p->avctx = avctx;