summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorwm4 <wm4@nowhere>2015-02-23 16:12:03 +0100
committerDiogo Franco (Kovensky) <diogomfranco@gmail.com>2015-02-25 10:50:50 +0900
commit589b38c187671f3c9144c5f50db08dd1af7c00d1 (patch)
treeabb2ee02f9e793753dcb122a88fbd34efca86060
parent62bc8442be72ecd47751211e6e6d5fc7472afbac (diff)
downloadmpv-589b38c187671f3c9144c5f50db08dd1af7c00d1.tar.bz2
mpv-589b38c187671f3c9144c5f50db08dd1af7c00d1.tar.xz
vf: fix indentation level of verbose output
Just so that it has the same indentation as the extremely similar audio filter output. (cherry picked from commit 24e72801788760ac4e3c998517717fd075ecd64c)
-rw-r--r--video/filter/vf.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/video/filter/vf.c b/video/filter/vf.c
index a228ba3a76..b308a32e18 100644
--- a/video/filter/vf.c
+++ b/video/filter/vf.c
@@ -226,11 +226,11 @@ void vf_print_filter_chain(struct vf_chain *c, int msglevel,
char b[128] = {0};
mp_snprintf_cat(b, sizeof(b), "%s", mp_image_params_to_str(&c->input_params));
- mp_msg(c->log, msglevel, " [vd] %s\n", b);
+ mp_msg(c->log, msglevel, " [vd] %s\n", b);
for (vf_instance_t *f = c->first; f; f = f->next) {
b[0] = '\0';
- mp_snprintf_cat(b, sizeof(b), " [%s] ", f->info->name);
+ mp_snprintf_cat(b, sizeof(b), " [%s] ", f->info->name);
mp_snprintf_cat(b, sizeof(b), "%s", mp_image_params_to_str(&f->fmt_out));
if (f->autoinserted)
mp_snprintf_cat(b, sizeof(b), " [a]");