[FFmpeg-cvslog] avdevice/avfoundation: convert to new channel layout-API
James Almer
git at videolan.org
Tue Nov 8 19:26:33 EET 2022
ffmpeg | branch: master | James Almer <jamrial at gmail.com> | Sun Nov 6 18:29:50 2022 -0300| [0d0d67ce3640f01395e6d3c1ab3fc2d68fe78e2e] | committer: James Almer
avdevice/avfoundation: convert to new channel layout-API
Signed-off-by: James Almer <jamrial at gmail.com>
> http://git.videolan.org/gitweb.cgi/ffmpeg.git/?a=commit;h=0d0d67ce3640f01395e6d3c1ab3fc2d68fe78e2e
---
libavdevice/avfoundation.m | 3 +--
1 file changed, 1 insertion(+), 2 deletions(-)
diff --git a/libavdevice/avfoundation.m b/libavdevice/avfoundation.m
index c9de93f774..36ad834753 100644
--- a/libavdevice/avfoundation.m
+++ b/libavdevice/avfoundation.m
@@ -706,8 +706,7 @@ static int get_audio_config(AVFormatContext *s)
stream->codecpar->codec_type = AVMEDIA_TYPE_AUDIO;
stream->codecpar->sample_rate = basic_desc->mSampleRate;
- stream->codecpar->channels = basic_desc->mChannelsPerFrame;
- stream->codecpar->channel_layout = av_get_default_channel_layout(stream->codecpar->channels);
+ av_channel_layout_default(&stream->codecpar->ch_layout, basic_desc->mChannelsPerFrame);
ctx->audio_channels = basic_desc->mChannelsPerFrame;
ctx->audio_bits_per_sample = basic_desc->mBitsPerChannel;
More information about the ffmpeg-cvslog
mailing list