[FFmpeg-cvslog] avformat/dashenc: remove unused check of avformat_free_context

Steven Liu git at videolan.org
Sun Dec 1 18:10:40 EET 2019


ffmpeg | branch: master | Steven Liu <lq at chinaffmpeg.org> | Fri Nov 29 13:15:57 2019 +0800| [b26225a3c7109400f2870daf94c2c731e29976f8] | committer: Steven Liu

avformat/dashenc: remove unused check of avformat_free_context

Reviewed-by: Michael Niedermayer <michael at niedermayer.cc>
Reviewed-by: Jun Zhao <barryjzhao at tencent.com>
Reviewed-by: Jeyapal, Karthick <kjeyapal at akamai.com>
Signed-off-by: Steven Liu <lq at chinaffmpeg.org>

> http://git.videolan.org/gitweb.cgi/ffmpeg.git/?a=commit;h=b26225a3c7109400f2870daf94c2c731e29976f8
---

 libavformat/dashenc.c | 3 +--
 1 file changed, 1 insertion(+), 2 deletions(-)

diff --git a/libavformat/dashenc.c b/libavformat/dashenc.c
index a462876c13..8c28fb6b6e 100644
--- a/libavformat/dashenc.c
+++ b/libavformat/dashenc.c
@@ -588,8 +588,7 @@ static void dash_free(AVFormatContext *s)
                 avio_close(os->ctx->pb);
         }
         ff_format_io_close(s, &os->out);
-        if (os->ctx)
-            avformat_free_context(os->ctx);
+        avformat_free_context(os->ctx);
         for (j = 0; j < os->nb_segments; j++)
             av_free(os->segments[j]);
         av_free(os->segments);



More information about the ffmpeg-cvslog mailing list