From 776f2bb91a5e31a385ee0a200df907e9acb0de87 Mon Sep 17 00:00:00 2001 From: Martin Storsjö Date: Sun, 6 Nov 2011 02:47:48 +0200 Subject: Call avformat_network_init/deinit in the programs MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Calling the init function will become mandatory at some later point. By calling it, more heavy network init (such as SSL/TLS library init) can be done once at startup, instead of implicitly when used (which could lead to it being done a number of times). Signed-off-by: Martin Storsjö --- avconv.c | 2 ++ 1 file changed, 2 insertions(+) (limited to 'avconv.c') diff --git a/avconv.c b/avconv.c index 8f86c007bf..7c0e78a17f 100644 --- a/avconv.c +++ b/avconv.c @@ -542,6 +542,7 @@ void exit_program(int ret) #if CONFIG_AVFILTER avfilter_uninit(); #endif + avformat_network_deinit(); if (received_sigterm) { av_log(NULL, AV_LOG_INFO, "Received signal %d: terminating.\n", @@ -4218,6 +4219,7 @@ int main(int argc, char **argv) avfilter_register_all(); #endif av_register_all(); + avformat_network_init(); avio_set_interrupt_cb(decode_interrupt_cb); -- cgit v1.2.3