From: Anton Khirnov <[email protected]>
Signed-off-by: James Almer <[email protected]>
---
libavformat/nspdec.c | 3 ++-
1 file changed, 2 insertions(+), 1 deletion(-)
diff --git a/libavformat/nspdec.c b/libavformat/nspdec.c
index 3aaf887746..8d221efea9 100644
--- a/libavformat/nspdec.c
+++ b/libavformat/nspdec.c
@@ -88,7 +88,8 @@ static int nsp_read_header(AVFormatContext *s)
}
st->codecpar->codec_type = AVMEDIA_TYPE_AUDIO;
- st->codecpar->channels = channels;
+ st->codecpar->ch_layout.order = AV_CHANNEL_ORDER_UNSPEC;
+ st->codecpar->ch_layout.nb_channels = channels;
st->codecpar->sample_rate = rate;
st->codecpar->codec_id = AV_CODEC_ID_PCM_S16LE;
st->codecpar->block_align = 2 * channels;
--
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".