summaryrefslogtreecommitdiff
path: root/avplay.c
diff options
context:
space:
mode:
authorMartin Storsjö <martin@martin.st>2011-11-06 02:47:48 +0200
committerMartin Storsjö <martin@martin.st>2011-11-06 18:31:39 +0200
commit776f2bb91a5e31a385ee0a200df907e9acb0de87 (patch)
tree8c2b0350a8cca51706c99dab0042d79e7339e042 /avplay.c
parent3607ed70d5ad44b6614cac27f9c833d24626635e (diff)
Call avformat_network_init/deinit in the programs
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ö <martin@martin.st>
Diffstat (limited to 'avplay.c')
-rw-r--r--avplay.c2
1 files changed, 2 insertions, 0 deletions
diff --git a/avplay.c b/avplay.c
index 58db59639d..c67cc75fe8 100644
--- a/avplay.c
+++ b/avplay.c
@@ -1259,6 +1259,7 @@ static void do_exit(void)
#if CONFIG_AVFILTER
avfilter_uninit();
#endif
+ avformat_network_deinit();
if (show_status)
printf("\n");
SDL_Quit();
@@ -3066,6 +3067,7 @@ int main(int argc, char **argv)
avfilter_register_all();
#endif
av_register_all();
+ avformat_network_init();
init_opts();