avformat/avidec: don't save a copy of the packet's AVBufferRef on DV streams

It's no longer needed.

Signed-off-by: James Almer <jamrial@gmail.com>
This commit is contained in:
James Almer 2021-05-02 10:22:52 -03:00
parent 57aaeff523
commit 42895f590a
1 changed files with 0 additions and 2 deletions

View File

@ -1494,10 +1494,8 @@ resync:
} }
if (CONFIG_DV_DEMUXER && dv_demux) { if (CONFIG_DV_DEMUXER && dv_demux) {
AVBufferRef *avbuf = pkt->buf;
size = avpriv_dv_produce_packet(avi->dv_demux, pkt, size = avpriv_dv_produce_packet(avi->dv_demux, pkt,
pkt->data, pkt->size, pkt->pos); pkt->data, pkt->size, pkt->pos);
pkt->buf = avbuf;
pkt->flags |= AV_PKT_FLAG_KEY; pkt->flags |= AV_PKT_FLAG_KEY;
if (size < 0) if (size < 0)
av_packet_unref(pkt); av_packet_unref(pkt);