[FFmpeg-devel] [PATCH 2/3] avcodec/avi: don't save a copy of the packet's AVBufferRef on DV streams

James Almer jamrial at gmail.com
Sun May 2 16:58:18 EEST 2021


It's no longer needed.

Signed-off-by: James Almer <jamrial at gmail.com>
---
 libavformat/avidec.c | 2 --
 1 file changed, 2 deletions(-)

diff --git a/libavformat/avidec.c b/libavformat/avidec.c
index d5dcab6193..e0d868e074 100644
--- a/libavformat/avidec.c
+++ b/libavformat/avidec.c
@@ -1494,10 +1494,8 @@ resync:
         }
 
         if (CONFIG_DV_DEMUXER && dv_demux) {
-            AVBufferRef *avbuf = pkt->buf;
             size = avpriv_dv_produce_packet(avi->dv_demux, pkt,
                                             pkt->data, pkt->size, pkt->pos);
-            pkt->buf    = avbuf;
             pkt->flags |= AV_PKT_FLAG_KEY;
             if (size < 0)
                 av_packet_unref(pkt);
-- 
2.31.1



More information about the ffmpeg-devel mailing list