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

Function ff_is_http_proto

libavformat/utils.c:582–585  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

580}
581
582int 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
587int ff_bprint_to_codecpar_extradata(AVCodecParameters *par, struct AVBPrint *buf)
588{

Callers 7

hlsenc_io_openFunction · 0.85
hlsenc_io_closeFunction · 0.85
set_http_optionsFunction · 0.85
hls_initFunction · 0.85
dashenc_io_openFunction · 0.85
dashenc_io_closeFunction · 0.85
dashenc_delete_fileFunction · 0.85

Calls 2

avio_find_protocol_nameFunction · 0.85
av_strcasecmpFunction · 0.85

Tested by

no test coverage detected