ffmpeg | branch: master | Stephen Hutchinson <[email protected]> | Sun Aug  7 
21:25:32 2022 -0400| [765fc3b9431851b936cabe0e9c7c526f9b0da46a] | committer: 
James Almer

avformat/avisynth: cosmetics after nb_channels change

Signed-off-by: James Almer <[email protected]>

> http://git.videolan.org/gitweb.cgi/ffmpeg.git/?a=commit;h=765fc3b9431851b936cabe0e9c7c526f9b0da46a
---

 libavformat/avisynth.c | 8 ++++----
 1 file changed, 4 insertions(+), 4 deletions(-)

diff --git a/libavformat/avisynth.c b/libavformat/avisynth.c
index ec595dab79..52b926b636 100644
--- a/libavformat/avisynth.c
+++ b/libavformat/avisynth.c
@@ -750,10 +750,10 @@ static int avisynth_create_stream_audio(AVFormatContext 
*s, AVStream *st)
 {
     AviSynthContext *avs = s->priv_data;
 
-    st->codecpar->codec_type  = AVMEDIA_TYPE_AUDIO;
-    st->codecpar->sample_rate = avs->vi->audio_samples_per_second;
-    st->codecpar->ch_layout.nb_channels    = avs->vi->nchannels;
-    st->duration              = avs->vi->num_audio_samples;
+    st->codecpar->codec_type            = AVMEDIA_TYPE_AUDIO;
+    st->codecpar->sample_rate           = avs->vi->audio_samples_per_second;
+    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);
 
     switch (avs->vi->sample_type) {

_______________________________________________
ffmpeg-cvslog mailing list
[email protected]
https://ffmpeg.org/mailman/listinfo/ffmpeg-cvslog

To unsubscribe, visit link above, or email
[email protected] with subject "unsubscribe".

Reply via email to