diff options
author | Vittorio Giovara <vittorio.giovara@gmail.com> | 2017-03-31 14:13:28 +0200 |
---|---|---|
committer | James Almer <jamrial@gmail.com> | 2022-03-15 09:42:33 -0300 |
commit | f17932faf5e599ddfa84beafe21128d271b4f8fb (patch) | |
tree | d6eab122f3d86a1a96875fe5a7370632bc41d27e /libavformat/g723_1.c | |
parent | 915eb06937f9111cf9e8388ab1822155795cb5ce (diff) | |
download | ffmpeg-f17932faf5e599ddfa84beafe21128d271b4f8fb.tar.gz |
g723_1: 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 'libavformat/g723_1.c')
-rw-r--r-- | libavformat/g723_1.c | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/libavformat/g723_1.c b/libavformat/g723_1.c index f38064b5b2..e35b4ed503 100644 --- a/libavformat/g723_1.c +++ b/libavformat/g723_1.c @@ -41,8 +41,7 @@ static av_cold int g723_1_init(AVFormatContext *s) st->codecpar->codec_type = AVMEDIA_TYPE_AUDIO; st->codecpar->codec_id = AV_CODEC_ID_G723_1; - st->codecpar->channel_layout = AV_CH_LAYOUT_MONO; - st->codecpar->channels = 1; + st->codecpar->ch_layout = (AVChannelLayout)AV_CHANNEL_LAYOUT_MONO; st->codecpar->sample_rate = 8000; avpriv_set_pts_info(st, 64, 1, st->codecpar->sample_rate); |