libavfilter/lavfutils: remove useless NULL check on format context

Fixes: CID733804
Signed-off-by: Michael Niedermayer <michaelni@gmx.at>
This commit is contained in:
Michael Niedermayer 2012-10-17 20:00:31 +02:00
parent fd9e88fe60
commit 657998b5ee
1 changed files with 1 additions and 2 deletions

View File

@ -86,8 +86,7 @@ int ff_load_image(uint8_t *data[4], int linesize[4],
end:
avcodec_close(codec_ctx);
if (format_ctx)
avformat_close_input(&format_ctx);
avformat_close_input(&format_ctx);
av_freep(&frame);
if (ret < 0)