diff options
author | Vittorio Giovara <vittorio.giovara@gmail.com> | 2017-03-29 18:23:04 +0200 |
---|---|---|
committer | James Almer <jamrial@gmail.com> | 2022-03-15 09:42:41 -0300 |
commit | fbd6e2bab4382a8ccd08f3df54fe38501164a9a0 (patch) | |
tree | 2272fb2aeaf2ad949b7973c63728b65535c94ae6 /libavcodec/dss_sp.c | |
parent | 279919ef8d96db746c4468e25d89f1237464bc40 (diff) | |
download | ffmpeg-fbd6e2bab4382a8ccd08f3df54fe38501164a9a0.tar.gz |
dss_sp: convert to new channel layout API
Signed-off-by: Vittorio Giovara <vittorio.giovara@gmail.com>
Signed-off-by: James Almer <jamrial@gmail.com>
Diffstat (limited to 'libavcodec/dss_sp.c')
-rw-r--r-- | libavcodec/dss_sp.c | 4 |
1 files 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; |