Skip to content
Snippets Groups Projects
Commit 093c50a4 authored by Janne Grunau's avatar Janne Grunau
Browse files

avprobe: close opened codecs after use

Fixes "memleak" on closing avprobe to make valgrind happy.
parent 100c70b0
No related branches found
No related tags found
No related merge requests found
...@@ -352,6 +352,20 @@ static int open_input_file(AVFormatContext **fmt_ctx_ptr, const char *filename) ...@@ -352,6 +352,20 @@ static int open_input_file(AVFormatContext **fmt_ctx_ptr, const char *filename)
return 0; return 0;
} }
static void close_input_file(AVFormatContext **ctx_ptr)
{
int i;
AVFormatContext *fmt_ctx = *ctx_ptr;
/* close decoder for each stream */
for (i = 0; i < fmt_ctx->nb_streams; i++) {
AVStream *stream = fmt_ctx->streams[i];
avcodec_close(stream->codec);
}
avformat_close_input(ctx_ptr);
}
static int probe_file(const char *filename) static int probe_file(const char *filename)
{ {
AVFormatContext *fmt_ctx; AVFormatContext *fmt_ctx;
...@@ -370,7 +384,7 @@ static int probe_file(const char *filename) ...@@ -370,7 +384,7 @@ static int probe_file(const char *filename)
if (do_show_format) if (do_show_format)
show_format(fmt_ctx); show_format(fmt_ctx);
avformat_close_input(&fmt_ctx); close_input_file(&fmt_ctx);
return 0; return 0;
} }
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment