diff options
author | Anton Khirnov <anton@khirnov.net> | 2019-05-13 11:11:26 +0200 |
---|---|---|
committer | James Almer <jamrial@gmail.com> | 2022-03-15 09:42:36 -0300 |
commit | 5bcf9029c85de3bafdd48927b9e64d281f889cfe (patch) | |
tree | 544de5f0ce5c5ae5f257f301262b0fa62e1129be /libavformat/sbgdec.c | |
parent | 620d151e5cb095c3406a06a476d4b0bfaf7f0182 (diff) | |
download | ffmpeg-5bcf9029c85de3bafdd48927b9e64d281f889cfe.tar.gz |
sbg: convert to new channel layout API
Signed-off-by: James Almer <jamrial@gmail.com>
Diffstat (limited to 'libavformat/sbgdec.c')
-rw-r--r-- | libavformat/sbgdec.c | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/libavformat/sbgdec.c b/libavformat/sbgdec.c index baffbbd6fd..8a6d679056 100644 --- a/libavformat/sbgdec.c +++ b/libavformat/sbgdec.c @@ -1446,8 +1446,7 @@ static av_cold int sbg_read_header(AVFormatContext *avf) sti = ffstream(st); st->codecpar->codec_type = AVMEDIA_TYPE_AUDIO; st->codecpar->codec_id = AV_CODEC_ID_FFWAVESYNTH; - st->codecpar->channels = 2; - st->codecpar->channel_layout = AV_CH_LAYOUT_STEREO; + st->codecpar->ch_layout = (AVChannelLayout)AV_CHANNEL_LAYOUT_STEREO; st->codecpar->sample_rate = sbg->sample_rate; st->codecpar->frame_size = sbg->frame_size; avpriv_set_pts_info(st, 64, 1, st->codecpar->sample_rate); |