diff mbox series

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

Message ID 20210502135819.53794-2-jamrial@gmail.com
State Accepted
Commit 42895f590a3ab6cba57a5a7d47434faec2174f70
Headers show
Series [FFmpeg-devel,1/3] avformat/dv: stop using av_init_packet() | expand

Checks

Context Check Description
andriy/x86_make success Make finished
andriy/x86_make_fate success Make fate finished
andriy/PPC64_make success Make finished
andriy/PPC64_make_fate success Make fate finished

Commit Message

James Almer May 2, 2021, 1:58 p.m. UTC
It's no longer needed.

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

Patch

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);