summaryrefslogtreecommitdiffstats
path: root/video/filter
diff options
context:
space:
mode:
authorwm4 <wm4@nowhere>2014-04-21 22:54:15 +0200
committerwm4 <wm4@nowhere>2014-04-22 01:42:57 +0200
commitdd39b47f7cfcf643651e78e633a23998676e1ea7 (patch)
tree798c0251e2e0536058b856fbeb18524b775d9eed /video/filter
parent259fb392a52ec89ad3b0168e4c775e1e0a7cd9b9 (diff)
downloadmpv-dd39b47f7cfcf643651e78e633a23998676e1ea7.tar.bz2
mpv-dd39b47f7cfcf643651e78e633a23998676e1ea7.tar.xz
vf: print all image parameter information in verbose output
Diffstat (limited to 'video/filter')
-rw-r--r--video/filter/vf.c5
1 files changed, 5 insertions, 0 deletions
diff --git a/video/filter/vf.c b/video/filter/vf.c
index fc12bc1eda..0d8f239721 100644
--- a/video/filter/vf.c
+++ b/video/filter/vf.c
@@ -218,6 +218,11 @@ static void print_fmt(struct mp_log *log, int msglevel, struct mp_image_params *
mp_msg(log, msglevel, " %s", mp_imgfmt_to_name(p->imgfmt));
mp_msg(log, msglevel, " %s/%s", mp_csp_names[p->colorspace],
mp_csp_levels_names[p->colorlevels]);
+ mp_msg(log, msglevel, " CL=%d", (int)p->chroma_location);
+ if (p->outputlevels)
+ mp_msg(log, msglevel, " out=%s", mp_csp_levels_names[p->outputlevels]);
+ if (p->rotate)
+ mp_msg(log, msglevel, " rot=%d", p->rotate);
} else {
mp_msg(log, msglevel, "???");
}