summaryrefslogtreecommitdiffstats
path: root/video/filter
diff options
context:
space:
mode:
Diffstat (limited to 'video/filter')
-rw-r--r--video/filter/vf.c2
1 files changed, 2 insertions, 0 deletions
diff --git a/video/filter/vf.c b/video/filter/vf.c
index 2b9e82096a..e91b1a7ff1 100644
--- a/video/filter/vf.c
+++ b/video/filter/vf.c
@@ -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");
}
}