You've already forked FFmpeg
mirror of
https://github.com/FFmpeg/FFmpeg.git
synced 2025-08-15 14:13:16 +02:00
lavfi/tinterlace: drop redundant NULL checks in uninit()
This commit is contained in:
@@ -106,8 +106,8 @@ static av_cold void uninit(AVFilterContext *ctx)
|
||||
{
|
||||
TInterlaceContext *tinterlace = ctx->priv;
|
||||
|
||||
if (tinterlace->cur ) avfilter_unref_bufferp(&tinterlace->cur );
|
||||
if (tinterlace->next) avfilter_unref_bufferp(&tinterlace->next);
|
||||
avfilter_unref_bufferp(&tinterlace->cur );
|
||||
avfilter_unref_bufferp(&tinterlace->next);
|
||||
|
||||
av_opt_free(tinterlace);
|
||||
av_freep(&tinterlace->black_data[0]);
|
||||
|
Reference in New Issue
Block a user