summaryrefslogtreecommitdiff
path: root/libavcodec
diff options
context:
space:
mode:
authorAnton Khirnov <anton@khirnov.net>2013-05-07 07:20:32 +0200
committerJames Almer <jamrial@gmail.com>2022-03-15 09:42:42 -0300
commit3928c4ae45757687217ea5f66b225a9cc9a851d4 (patch)
treee634595f21d7f1bc36495889458a2ccefdbc80f0 /libavcodec
parent64c64cb4517946ba4ed3a7c8cc87847c78e1fbd0 (diff)
gsmdec: 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')
-rw-r--r--libavcodec/gsmdec.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/libavcodec/gsmdec.c b/libavcodec/gsmdec.c
index c169112311..e3c87af513 100644
--- a/libavcodec/gsmdec.c
+++ b/libavcodec/gsmdec.c
@@ -34,8 +34,8 @@
static av_cold int gsm_init(AVCodecContext *avctx)
{
- 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;
if (!avctx->sample_rate)
avctx->sample_rate = 8000;
avctx->sample_fmt = AV_SAMPLE_FMT_S16;