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

Function avio_printf

libavformat/aviobuf.c:1210–1220  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

1208}
1209
1210int avio_printf(AVIOContext *s, const char *fmt, ...)
1211{
1212 va_list ap;
1213 int ret;
1214
1215 va_start(ap, fmt);
1216 ret = avio_vprintf(s, fmt, ap);
1217 va_end(ap);
1218
1219 return ret;
1220}
1221
1222void avio_print_string_array(AVIOContext *s, const char *const strings[])
1223{

Callers 15

mcc_write_headerFunction · 0.85
mcc_write_packetFunction · 0.85
microdvd_write_packetFunction · 0.85
create_master_playlistFunction · 0.85
hls_windowFunction · 0.85
webvtt_write_timeFunction · 0.85
webvtt_write_headerFunction · 0.85
webvtt_write_packetFunction · 0.85
segment_list_openFunction · 0.85
segment_list_print_entryFunction · 0.85
segment_endFunction · 0.85

Calls 1

avio_vprintfFunction · 0.85

Tested by

no test coverage detected