| 559 | } |
| 560 | |
| 561 | int 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 | |
| 573 | int avformat_network_deinit(void) |
| 574 | { |