[FFmpeg-devel] [PATCH 205/281] dss_sp: convert to new channel layout API
James Almer
jamrial at gmail.com
Thu Jan 13 04:02:38 EET 2022
From: Vittorio Giovara <vittorio.giovara at gmail.com>
Signed-off-by: Vittorio Giovara <vittorio.giovara at gmail.com>
Signed-off-by: James Almer <jamrial at gmail.com>
---
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;
--
2.34.1
More information about the ffmpeg-devel
mailing list