diff options
author | Steven Liu <lq@chinaffmpeg.org> | 2019-11-29 13:16:00 +0800 |
---|---|---|
committer | Steven Liu <lq@chinaffmpeg.org> | 2019-12-02 00:08:31 +0800 |
commit | 9cc88ed4b71cdb2ea95e584a9cc3651d1cb52427 (patch) | |
tree | 5f695db7587b2e966d8be8b2018517b5d14a4afc | |
parent | 0f79a71353faeef6bc067a0cf3f2f982d732b9dd (diff) | |
download | ffmpeg-9cc88ed4b71cdb2ea95e584a9cc3651d1cb52427.tar.gz |
avformat/smoothstreamingenc: removed unused check of avformat_free_context
Reviewed-by: Michael Niedermayer <michael@niedermayer.cc>
Reviewed-by: Jun Zhao <barryjzhao@tencent.com>
Signed-off-by: Steven Liu <lq@chinaffmpeg.org>
-rw-r--r-- | libavformat/smoothstreamingenc.c | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/libavformat/smoothstreamingenc.c b/libavformat/smoothstreamingenc.c index 1ed19ebb2f..2faf1e7897 100644 --- a/libavformat/smoothstreamingenc.c +++ b/libavformat/smoothstreamingenc.c @@ -183,8 +183,7 @@ static void ism_free(AVFormatContext *s) av_write_trailer(os->ctx); if (os->ctx && os->ctx->pb) avio_context_free(&os->ctx->pb); - if (os->ctx) - avformat_free_context(os->ctx); + avformat_free_context(os->ctx); av_freep(&os->private_str); for (j = 0; j < os->nb_fragments; j++) av_freep(&os->fragments[j]); |