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

Function dprintf_link

libavfilter/avfilter.c:183–192  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

181}
182
183static void dprintf_link(void *ctx, AVFilterLink *link, int end)
184{
185 dprintf(ctx,
186 "link[%p s:%dx%d fmt:%-16s %-16s->%-16s]%s",
187 link, link->w, link->h,
188 av_pix_fmt_descriptors[link->format].name,
189 link->src ? link->src->filter->name : "",
190 link->dst ? link->dst->filter->name : "",
191 end ? "\n" : "");
192}
193
194#define DPRINTF_START(ctx, func) dprintf(NULL, "%-16s: ", #func)
195

Callers 4

avfilter_request_frameFunction · 0.85
avfilter_start_frameFunction · 0.85
avfilter_draw_sliceFunction · 0.85

Calls

no outgoing calls

Tested by

no test coverage detected