diff options
author | Vittorio Giovara <vittorio.giovara@gmail.com> | 2015-04-22 14:59:56 +0100 |
---|---|---|
committer | Michael Niedermayer <michaelni@gmx.at> | 2015-05-21 20:43:37 +0200 |
commit | b8f5996071cca7aea705dc363a3a79891d66f246 (patch) | |
tree | 24ebf9bef12627e75da34287037ed7152c790d34 | |
parent | 004064912f39377bc947af49d606e3e2c7a30cd7 (diff) | |
download | ffmpeg-b8f5996071cca7aea705dc363a3a79891d66f246.tar.gz |
lavf: Reset global flag on deinit
Signed-off-by: Michael Niedermayer <michaelni@gmx.at>
(cherry picked from commit 32da94fa7f73ac749e0a1e2f20499fad2f6f57fe)
Signed-off-by: Michael Niedermayer <michaelni@gmx.at>
-rw-r--r-- | libavformat/utils.c | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/libavformat/utils.c b/libavformat/utils.c index d1e0f7139d..496b656378 100644 --- a/libavformat/utils.c +++ b/libavformat/utils.c @@ -4098,6 +4098,7 @@ int avformat_network_deinit(void) #if CONFIG_NETWORK ff_network_close(); ff_tls_deinit(); + ff_network_inited_globally = 0; #endif return 0; } |