| 571 | } |
| 572 | |
| 573 | int avformat_network_deinit(void) |
| 574 | { |
| 575 | #if CONFIG_NETWORK |
| 576 | ff_network_close(); |
| 577 | ff_tls_deinit(); |
| 578 | #endif |
| 579 | return 0; |
| 580 | } |
| 581 | |
| 582 | int ff_is_http_proto(const char *filename) { |
| 583 | const char *proto = avio_find_protocol_name(filename); |
no test coverage detected