[FFmpeg-devel] [PATCH 3/4] avformat/ilbc: Use av_get_packet

Andreas Rheinhardt andreas.rheinhardt at gmail.com
Wed Feb 3 12:27:48 EET 2021


Signed-off-by: Andreas Rheinhardt <andreas.rheinhardt at gmail.com>
---
 libavformat/ilbc.c | 8 ++------
 1 file changed, 2 insertions(+), 6 deletions(-)

diff --git a/libavformat/ilbc.c b/libavformat/ilbc.c
index 188c0f091a..bee3954f9c 100644
--- a/libavformat/ilbc.c
+++ b/libavformat/ilbc.c
@@ -99,15 +99,11 @@ static int ilbc_read_packet(AVFormatContext *s,
     AVCodecParameters *par = s->streams[0]->codecpar;
     int ret;
 
-    if ((ret = av_new_packet(pkt, par->block_align)) < 0)
-        return ret;
+    if ((ret = av_get_packet(s->pb, pkt, par->block_align)) != par->block_align)
+        return ret < 0 ? ret : AVERROR_INVALIDDATA;
 
     pkt->stream_index = 0;
-    pkt->pos = avio_tell(s->pb);
     pkt->duration = par->block_align == 38 ? 160 : 240;
-    if ((ret = avio_read(s->pb, pkt->data, par->block_align)) != par->block_align) {
-        return ret < 0 ? ret : AVERROR(EIO);
-    }
 
     return 0;
 }
-- 
2.27.0



More information about the ffmpeg-devel mailing list