diff options
author | Anton Khirnov <anton@khirnov.net> | 2020-01-29 17:25:51 +0100 |
---|---|---|
committer | James Almer <jamrial@gmail.com> | 2022-03-15 09:42:35 -0300 |
commit | 86eef55878ffab43606613ffc789129c9478ea3e (patch) | |
tree | c1b856e02fb542bbccd51e1159b271ce329daf3e /libavformat/nspdec.c | |
parent | 80005b681e27b99445b50f9051f356fa577eadf2 (diff) | |
download | ffmpeg-86eef55878ffab43606613ffc789129c9478ea3e.tar.gz |
nspdec: convert to new channel layout API
Signed-off-by: James Almer <jamrial@gmail.com>
Diffstat (limited to 'libavformat/nspdec.c')
-rw-r--r-- | libavformat/nspdec.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/libavformat/nspdec.c b/libavformat/nspdec.c index 3aaf887746..923432ac92 100644 --- a/libavformat/nspdec.c +++ b/libavformat/nspdec.c @@ -88,7 +88,7 @@ static int nsp_read_header(AVFormatContext *s) } st->codecpar->codec_type = AVMEDIA_TYPE_AUDIO; - st->codecpar->channels = channels; + 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; |