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

Function av_find_input_format

libavformat/format.c:146–154  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

144}
145
146const AVInputFormat *av_find_input_format(const char *short_name)
147{
148 const AVInputFormat *fmt = NULL;
149 void *i = 0;
150 while ((fmt = av_demuxer_iterate(&i)))
151 if (av_match_name(short_name, fmt->name))
152 return fmt;
153 return NULL;
154}
155
156const AVInputFormat *av_probe_input_format3(const AVProbeData *pd,
157 int is_opened, int *score_ret)

Callers 12

ff_wms_parse_sdp_a_lineFunction · 0.85
vobsub_read_headerFunction · 0.85
init_subtitle_contextFunction · 0.85
hls_read_headerFunction · 0.85
sap_read_headerFunction · 0.85
opt_formatFunction · 0.85
show_help_demuxerFunction · 0.85
opt_formatFunction · 0.85
ifile_openFunction · 0.85
movie_common_initFunction · 0.85
ff_load_imageFunction · 0.85

Calls 2

av_demuxer_iterateFunction · 0.85
av_match_nameFunction · 0.85

Tested by

no test coverage detected