[FFmpeg-devel] [PATCH] avformat/mux: Remove unnecessary unreferencing of AVPacket
Andreas Rheinhardt
andreas.rheinhardt at gmail.com
Sat May 9 23:18:10 EEST 2020
Since commit c5324d92c5f206dcdc2cf93ae237eaa7c1ad0a40 all custom
interleave_packet() functions always return clean packets (even on
error), so that unreferencing manually can be removed.
Signed-off-by: Andreas Rheinhardt <andreas.rheinhardt at gmail.com>
---
libavformat/mux.c | 5 +----
1 file changed, 1 insertion(+), 4 deletions(-)
diff --git a/libavformat/mux.c b/libavformat/mux.c
index f2de73af9b..c17686c0a6 100644
--- a/libavformat/mux.c
+++ b/libavformat/mux.c
@@ -1075,10 +1075,7 @@ int ff_interleaved_peek(AVFormatContext *s, int stream,
static int interleave_packet(AVFormatContext *s, AVPacket *out, AVPacket *in, int flush)
{
if (s->oformat->interleave_packet) {
- int ret = s->oformat->interleave_packet(s, out, in, flush);
- if (in)
- av_packet_unref(in);
- return ret;
+ return s->oformat->interleave_packet(s, out, in, flush);
} else
return ff_interleave_packet_per_dts(s, out, in, flush);
}
--
2.20.1
More information about the ffmpeg-devel
mailing list