| 181 | } |
| 182 | |
| 183 | static 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 |
no outgoing calls
no test coverage detected