diff mbox

[FFmpeg-devel,013/244] adp: convert to new channel layout API

Message ID 20191206101710.22028-13-anton@khirnov.net
State New
Headers show

Commit Message

Anton Khirnov Dec. 6, 2019, 10:17 a.m. UTC
---
 libavformat/adp.c | 3 +--
 1 file changed, 1 insertion(+), 2 deletions(-)
diff mbox

Patch

diff --git a/libavformat/adp.c b/libavformat/adp.c
index 56f302acfd..ac80c7809f 100644
--- a/libavformat/adp.c
+++ b/libavformat/adp.c
@@ -55,8 +55,7 @@  static int adp_read_header(AVFormatContext *s)
 
     st->codecpar->codec_type     = AVMEDIA_TYPE_AUDIO;
     st->codecpar->codec_id       = AV_CODEC_ID_ADPCM_DTK;
-    st->codecpar->channel_layout = AV_CH_LAYOUT_STEREO;
-    st->codecpar->channels       = 2;
+    st->codecpar->ch_layout      = (AVChannelLayout)AV_CHANNEL_LAYOUT_STEREO;
     st->codecpar->sample_rate    = 48000;
     st->start_time            = 0;
     if (s->pb->seekable & AVIO_SEEKABLE_NORMAL)