0
0
mirror of https://github.com/mpv-player/mpv.git synced 2024-09-20 20:03:10 +02:00

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 24e7280178)
This commit is contained in:
wm4 2015-02-23 16:12:03 +01:00 committed by Diogo Franco (Kovensky)
parent 62bc8442be
commit 589b38c187

View File

@ -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]");