[FFmpeg-devel] [PATCH 2/3] avformat/avisynth: use ch_layout.nb_channels for channel count

James Almer jamrial at gmail.com
Mon Aug 8 04:44:45 EEST 2022


On 8/7/2022 10:25 PM, Stephen Hutchinson wrote:
> Fixes deprecation warning
> ---
>   libavformat/avisynth.c | 2 +-
>   1 file changed, 1 insertion(+), 1 deletion(-)
> 
> diff --git a/libavformat/avisynth.c b/libavformat/avisynth.c
> index 98b4d68a57..5605fbefc4 100644
> --- a/libavformat/avisynth.c
> +++ b/libavformat/avisynth.c
> @@ -753,7 +753,7 @@ static int avisynth_create_stream_audio(AVFormatContext *s, AVStream *st)
>   
>       st->codecpar->codec_type  = AVMEDIA_TYPE_AUDIO;
>       st->codecpar->sample_rate = avs->vi->audio_samples_per_second;
> -    st->codecpar->channels    = avs->vi->nchannels;
> +    st->codecpar->ch_layout.nb_channels    = avs->vi->nchannels;
>       st->duration              = avs->vi->num_audio_samples;
>       avpriv_set_pts_info(st, 64, 1, avs->vi->audio_samples_per_second);

Applied and backported to 5.1.

Can't believe we missed this...


More information about the ffmpeg-devel mailing list