Searched refs:av_match_list (Results 1 – 7 of 7) sorted by relevance
/third_party/ffmpeg/libavutil/ |
D | avstring.h | 425 int av_match_list(const char *name, const char *list, char separator);
|
D | avstring.c | 452 int av_match_list(const char *name, const char *list, char separator) in av_match_list() function
|
/third_party/ffmpeg/libavformat/ |
D | avio.c | 184 if (uc->protocol_whitelist && av_match_list(uc->prot->name, uc->protocol_whitelist, ',') <= 0) { in ffurl_connect() 189 if (uc->protocol_blacklist && av_match_list(uc->prot->name, uc->protocol_blacklist, ',') > 0) { in ffurl_connect()
|
D | http.c | 293 if (av_match_list(status_group, s->reconnect_on_http_error, ',') > 0) in http_should_reconnect() 298 return av_match_list(http_code, s->reconnect_on_http_error, ',') > 0; in http_should_reconnect()
|
D | utils.c | 405 if (ic->format_whitelist && av_match_list(ic->iformat->name, ic->format_whitelist, ',') <= 0) { in av_demuxer_open() 568 if (s->format_whitelist && av_match_list(s->iformat->name, s->format_whitelist, ',') <= 0) { in avformat_open_input()
|
/third_party/ffmpeg/libavcodec/ |
D | avcodec.c | 225 if (avctx->codec_whitelist && av_match_list(codec->name, avctx->codec_whitelist, ',') <= 0) { in avcodec_open2()
|
/third_party/ffmpeg/doc/ |
D | APIchanges | 1162 Add av_match_list()
|