Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/FFmpeg/FFmpeg.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorStefano Sabatini <stefasab@gmail.com>2013-12-20 22:25:42 +0400
committerStefano Sabatini <stefasab@gmail.com>2013-12-20 22:25:42 +0400
commitd055a1395c23e18dc90998d768f9e8316466610a (patch)
tree5976ce18d0ade03dbe06495c94fd04caa463e853 /libavfilter/vf_hue.c
parent028d8dd367f79b82a5ad1d4b5d2bd2cb06ee0664 (diff)
lavfi/hue: show first decimal value of saturation
Diffstat (limited to 'libavfilter/vf_hue.c')
-rw-r--r--libavfilter/vf_hue.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/libavfilter/vf_hue.c b/libavfilter/vf_hue.c
index ec8faafd36..7843673365 100644
--- a/libavfilter/vf_hue.c
+++ b/libavfilter/vf_hue.c
@@ -353,7 +353,7 @@ static int filter_frame(AVFilterLink *inlink, AVFrame *inpic)
}
av_log(inlink->dst, AV_LOG_DEBUG,
- "H:%0.1f*PI h:%0.1f s:%0.f b:%0.f t:%0.1f n:%d\n",
+ "H:%0.1f*PI h:%0.1f s:%0.1f b:%0.f t:%0.1f n:%d\n",
hue->hue/M_PI, hue->hue_deg, hue->saturation, hue->brightness,
hue->var_values[VAR_T], (int)hue->var_values[VAR_N]);