[FFmpeg-devel] [PATCH 30/36] avcodec/imx_dump_header_bsf: Remove intermediate packet

Andreas Rheinhardt andreas.rheinhardt at gmail.com
Sat May 30 19:05:35 EEST 2020


This commit ends using separate packets for in- and output. Instead,
the input is read directly into the packet destined for output via
ff_bsf_get_packet_ref() and only the buffer-related fields are modified;
the others are not touched.

Signed-off-by: Andreas Rheinhardt <andreas.rheinhardt at gmail.com>
---
 libavcodec/imx_dump_header_bsf.c | 28 ++++++++++++----------------
 1 file changed, 12 insertions(+), 16 deletions(-)

diff --git a/libavcodec/imx_dump_header_bsf.c b/libavcodec/imx_dump_header_bsf.c
index e2b6a15591..95f8f31f66 100644
--- a/libavcodec/imx_dump_header_bsf.c
+++ b/libavcodec/imx_dump_header_bsf.c
@@ -30,39 +30,35 @@
 #include "bytestream.h"
 
 
-static int imx_dump_header(AVBSFContext *ctx, AVPacket *out)
+static int imx_dump_header(AVBSFContext *ctx, AVPacket *pkt)
 {
     /* MXF essence element key */
     static const uint8_t imx_header[16] = { 0x06,0x0e,0x2b,0x34,0x01,0x02,0x01,0x01,0x0d,0x01,0x03,0x01,0x05,0x01,0x01,0x00 };
 
-    AVPacket *in;
+    AVBufferRef *out = NULL;
     int ret = 0;
     uint8_t *out_buf;
 
-    ret = ff_bsf_get_packet(ctx, &in);
+    ret = ff_bsf_get_packet_ref(ctx, pkt);
     if (ret < 0)
         return ret;
 
-    ret = av_new_packet(out, in->size + 20);
-    if (ret < 0)
-        goto fail;
+    ret = ff_buffer_padded_realloc(&out, pkt->size + 20U);
+    if (ret < 0) {
+        av_packet_unref(pkt);
+        return ret;
+    }
 
     out_buf = out->data;
 
     bytestream_put_buffer(&out_buf, imx_header, 16);
     bytestream_put_byte(&out_buf, 0x83); /* KLV BER long form */
-    bytestream_put_be24(&out_buf, in->size);
-    bytestream_put_buffer(&out_buf, in->data, in->size);
+    bytestream_put_be24(&out_buf, pkt->size);
+    bytestream_put_buffer(&out_buf, pkt->data, pkt->size);
 
-    ret = av_packet_copy_props(out, in);
-    if (ret < 0)
-        goto fail;
+    ff_packet_replace_buffer(pkt, out);
 
-fail:
-    if (ret < 0)
-        av_packet_unref(out);
-    av_packet_free(&in);
-    return ret;
+    return 0;
 }
 
 static const enum AVCodecID codec_ids[] = {
-- 
2.20.1



More information about the ffmpeg-devel mailing list