Skip to content
Snippets Groups Projects
utils.c 129 KiB
Newer Older
  • Learn to ignore specific revisions
  •     ff_network_inited_globally = 1;
    
        if ((ret = ff_network_init()) < 0)
            return ret;
        ff_tls_init();
    #endif
        return 0;
    }
    
    int avformat_network_deinit(void)
    {
    #if CONFIG_NETWORK
        ff_network_close();
        ff_tls_deinit();
    #endif
        return 0;
    }