From: Anton Khirnov <[email protected]>
Signed-off-by: James Almer <[email protected]>
---
libavformat/dhav.c | 3 ++-
1 file changed, 2 insertions(+), 1 deletion(-)
diff --git a/libavformat/dhav.c b/libavformat/dhav.c
index 6c1cdde32c..935f805632 100644
--- a/libavformat/dhav.c
+++ b/libavformat/dhav.c
@@ -395,7 +395,8 @@ retry:
default: avpriv_request_sample(s, "Unknown audio codec %X",
dhav->audio_codec);
}
st->duration = dhav->duration;
- st->codecpar->channels = dhav->audio_channels;
+ st->codecpar->ch_layout.order = AV_CHANNEL_ORDER_UNSPEC;
+ st->codecpar->ch_layout.nb_channels = dhav->audio_channels;
st->codecpar->sample_rate = dhav->sample_rate;
st->priv_data = dst = av_mallocz(sizeof(DHAVStream));
if (!st->priv_data)
--
2.34.1
_______________________________________________
ffmpeg-devel mailing list
[email protected]
https://ffmpeg.org/mailman/listinfo/ffmpeg-devel
To unsubscribe, visit link above, or email
[email protected] with subject "unsubscribe".