[FFmpeg-cvslog] avformat/acm: use ff_get_extradata()

Paul B Mahol git at videolan.org
Wed Jan 2 17:35:15 EET 2019


ffmpeg | branch: master | Paul B Mahol <onemda at gmail.com> | Wed Jan  2 16:21:46 2019 +0100| [1139887ace7f15053527cbc8b0a354899bcfcf63] | committer: Paul B Mahol

avformat/acm: use ff_get_extradata()

> http://git.videolan.org/gitweb.cgi/ffmpeg.git/?a=commit;h=1139887ace7f15053527cbc8b0a354899bcfcf63
---

 libavformat/acm.c | 9 +++------
 1 file changed, 3 insertions(+), 6 deletions(-)

diff --git a/libavformat/acm.c b/libavformat/acm.c
index 08dd9282fa..dcf8778dc7 100644
--- a/libavformat/acm.c
+++ b/libavformat/acm.c
@@ -44,12 +44,9 @@ static int acm_read_header(AVFormatContext *s)
     st->codecpar->codec_type = AVMEDIA_TYPE_AUDIO;
     st->codecpar->codec_id   = AV_CODEC_ID_INTERPLAY_ACM;
 
-    ff_alloc_extradata(st->codecpar, 14);
-    if (!st->codecpar->extradata)
-        return AVERROR(ENOMEM);
-    ret = avio_read(s->pb, st->codecpar->extradata, 14);
-    if (ret < 10)
-        return ret < 0 ? ret : AVERROR_EOF;
+    ret = ff_get_extradata(s, st->codecpar, s->pb, 14);
+    if (ret < 0)
+        return ret;
 
     st->codecpar->channels    = AV_RL16(st->codecpar->extradata +  8);
     st->codecpar->sample_rate = AV_RL16(st->codecpar->extradata + 10);



More information about the ffmpeg-cvslog mailing list