From e65897f3eec371719768698fdee415db446e4311 Mon Sep 17 00:00:00 2001 From: Andreas Rheinhardt Date: Thu, 10 Sep 2020 21:50:06 +0200 Subject: [PATCH] avfilter/vf_subtitles: Remove unnecessary initialization of AVPacket av_read_frame() can handle uninitialized packets. Reviewed-by: Paul B Mahol Reviewed-by: Nicolas George Signed-off-by: Andreas Rheinhardt --- libavfilter/vf_subtitles.c | 3 --- 1 file changed, 3 deletions(-) diff --git a/libavfilter/vf_subtitles.c b/libavfilter/vf_subtitles.c index 2d3145bf2de..a045375b2d9 100644 --- a/libavfilter/vf_subtitles.c +++ b/libavfilter/vf_subtitles.c @@ -449,9 +449,6 @@ static av_cold int init_subtitles(AVFilterContext *ctx) ass_process_codec_private(ass->track, dec_ctx->subtitle_header, dec_ctx->subtitle_header_size); - av_init_packet(&pkt); - pkt.data = NULL; - pkt.size = 0; while (av_read_frame(fmt, &pkt) >= 0) { int i, got_subtitle; AVSubtitle sub = {0}; -- 2.39.2