mirror of
https://git.ffmpeg.org/ffmpeg.git
synced 2024-12-19 22:10:34 +00:00
doc/examples: do not check NULL values for avcodec_close()
avcodec_close() does nothing in case the argument is NULL. Simplify.
This commit is contained in:
parent
98786aa2f0
commit
50a28b1393
@ -369,10 +369,8 @@ int main (int argc, char **argv)
|
|||||||
}
|
}
|
||||||
|
|
||||||
end:
|
end:
|
||||||
if (video_dec_ctx)
|
avcodec_close(video_dec_ctx);
|
||||||
avcodec_close(video_dec_ctx);
|
avcodec_close(audio_dec_ctx);
|
||||||
if (audio_dec_ctx)
|
|
||||||
avcodec_close(audio_dec_ctx);
|
|
||||||
avformat_close_input(&fmt_ctx);
|
avformat_close_input(&fmt_ctx);
|
||||||
if (video_dst_file)
|
if (video_dst_file)
|
||||||
fclose(video_dst_file);
|
fclose(video_dst_file);
|
||||||
|
@ -248,8 +248,7 @@ int main(int argc, char **argv)
|
|||||||
}
|
}
|
||||||
end:
|
end:
|
||||||
avfilter_graph_free(&filter_graph);
|
avfilter_graph_free(&filter_graph);
|
||||||
if (dec_ctx)
|
avcodec_close(dec_ctx);
|
||||||
avcodec_close(dec_ctx);
|
|
||||||
avformat_close_input(&fmt_ctx);
|
avformat_close_input(&fmt_ctx);
|
||||||
av_frame_free(&frame);
|
av_frame_free(&frame);
|
||||||
av_frame_free(&filt_frame);
|
av_frame_free(&filt_frame);
|
||||||
|
@ -237,8 +237,7 @@ int main(int argc, char **argv)
|
|||||||
}
|
}
|
||||||
end:
|
end:
|
||||||
avfilter_graph_free(&filter_graph);
|
avfilter_graph_free(&filter_graph);
|
||||||
if (dec_ctx)
|
avcodec_close(dec_ctx);
|
||||||
avcodec_close(dec_ctx);
|
|
||||||
avformat_close_input(&fmt_ctx);
|
avformat_close_input(&fmt_ctx);
|
||||||
av_frame_free(&frame);
|
av_frame_free(&frame);
|
||||||
av_frame_free(&filt_frame);
|
av_frame_free(&filt_frame);
|
||||||
|
Loading…
Reference in New Issue
Block a user