1
0
mirror of https://github.com/mpv-player/mpv synced 2025-01-03 05:22:23 +00:00

vf: mark auto-inserted conversion filters in verbose output

Nota that this flag is not set for other auto-inserted filters (like
deinterlacing or rotation).
This commit is contained in:
wm4 2014-05-01 18:45:02 +02:00
parent ffde8083f6
commit 2a9b1d19ba

View File

@ -240,6 +240,8 @@ void vf_print_filter_chain(struct vf_chain *c, int msglevel)
for (vf_instance_t *f = c->first; f; f = f->next) {
mp_msg(c->log, msglevel, " [%s] ", f->info->name);
print_fmt(c->log, msglevel, &f->fmt_out);
if (f->autoinserted)
mp_msg(c->log, msglevel, " [a]");
mp_msg(c->log, msglevel, "\n");
}
}