| 580 | } |
| 581 | |
| 582 | int ff_is_http_proto(const char *filename) { |
| 583 | const char *proto = avio_find_protocol_name(filename); |
| 584 | return proto ? (!av_strcasecmp(proto, "http") || !av_strcasecmp(proto, "https")) : 0; |
| 585 | } |
| 586 | |
| 587 | int ff_bprint_to_codecpar_extradata(AVCodecParameters *par, struct AVBPrint *buf) |
| 588 | { |
no test coverage detected