On date Saturday 2024-03-09 12:27:50 -0600, Marth64 wrote: > Signed-off-by: Marth64 <mart...@proxyid.net> > --- > libavformat/dvdvideodec.c | 4 +++- > 1 file changed, 3 insertions(+), 1 deletion(-) > > diff --git a/libavformat/dvdvideodec.c b/libavformat/dvdvideodec.c > index b3cc32b864..ca85aa8d3d 100644 > --- a/libavformat/dvdvideodec.c > +++ b/libavformat/dvdvideodec.c > @@ -932,7 +932,9 @@ static int dvdvideo_audio_stream_analyze(AVFormatContext > *s, audio_attr_t audio_ > return AVERROR_INVALIDDATA; > } > > - if (nb_channels == 2) > + if (nb_channels == 1) > + ch_layout = (AVChannelLayout) AV_CHANNEL_LAYOUT_MONO; > + else if (nb_channels == 2) > ch_layout = (AVChannelLayout) AV_CHANNEL_LAYOUT_STEREO; > else if (nb_channels == 6) > ch_layout = (AVChannelLayout) AV_CHANNEL_LAYOUT_5POINT1; > -- > 2.34.1
LGTM, will apply. _______________________________________________ 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".