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

2022-08-07 Thread James Almer

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...
___
ffmpeg-devel mailing list
ffmpeg-devel@ffmpeg.org
https://ffmpeg.org/mailman/listinfo/ffmpeg-devel

To unsubscribe, visit link above, or email
ffmpeg-devel-requ...@ffmpeg.org with subject "unsubscribe".


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

2022-08-07 Thread Stephen Hutchinson
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);
 
-- 
2.34.1

___
ffmpeg-devel mailing list
ffmpeg-devel@ffmpeg.org
https://ffmpeg.org/mailman/listinfo/ffmpeg-devel

To unsubscribe, visit link above, or email
ffmpeg-devel-requ...@ffmpeg.org with subject "unsubscribe".