Commit a887fbb5 authored by Clément Bœsch's avatar Clément Bœsch

lavfi/subtitles: remove unecessary checks

parent e73ccfd6
...@@ -476,11 +476,9 @@ static av_cold int init_subtitles(AVFilterContext *ctx) ...@@ -476,11 +476,9 @@ static av_cold int init_subtitles(AVFilterContext *ctx)
end: end:
av_dict_free(&codec_opts); av_dict_free(&codec_opts);
if (dec_ctx) avcodec_close(dec_ctx);
avcodec_close(dec_ctx);
avcodec_free_context(&dec_ctx); avcodec_free_context(&dec_ctx);
if (fmt) avformat_close_input(&fmt);
avformat_close_input(&fmt);
return ret; return ret;
} }
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment