[FFmpeg-devel] [PATCH 6/9] avfilter/vf_subtitles: Remove unnecessary initialization of AVPacket
Paul B Mahol
onemda at gmail.com
Fri Sep 11 12:16:42 EEST 2020
On Thu, Sep 10, 2020 at 11:48:58PM +0200, Andreas Rheinhardt wrote:
> av_read_frame() can handle uninitialized packets.
>
> Signed-off-by: Andreas Rheinhardt <andreas.rheinhardt at gmail.com>
> ---
> libavfilter/vf_subtitles.c | 3 ---
> 1 file changed, 3 deletions(-)
>
probably ok
> diff --git a/libavfilter/vf_subtitles.c b/libavfilter/vf_subtitles.c
> index 2d3145bf2d..a045375b2d 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.20.1
>
> _______________________________________________
> ffmpeg-devel mailing list
> ffmpeg-devel at ffmpeg.org
> https://ffmpeg.org/mailman/listinfo/ffmpeg-devel
>
> To unsubscribe, visit link above, or email
> ffmpeg-devel-request at ffmpeg.org with subject "unsubscribe".
More information about the ffmpeg-devel
mailing list