MCPcopy Create free account
hub / github.com/FFmpeg/FFmpeg / avformat_network_init

Function avformat_network_init

libavformat/utils.c:561–571  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

559}
560
561int avformat_network_init(void)
562{
563#if CONFIG_NETWORK
564 int ret;
565 if ((ret = ff_network_init()) < 0)
566 return ret;
567 if ((ret = ff_tls_init()) < 0)
568 return ret;
569#endif
570 return 0;
571}
572
573int avformat_network_deinit(void)
574{

Callers 7

mainFunction · 0.85
mainFunction · 0.85
mainFunction · 0.85
mainFunction · 0.85
mainFunction · 0.85
mainFunction · 0.85
mainFunction · 0.85

Calls 2

ff_network_initFunction · 0.85
ff_tls_initFunction · 0.85

Tested by 1

mainFunction · 0.68