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

github.com/mpc-hc/FFmpeg.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--libavfilter/vf_hue.c2
1 files changed, 2 insertions, 0 deletions
diff --git a/libavfilter/vf_hue.c b/libavfilter/vf_hue.c
index 7c9f1df31f..807baf4568 100644
--- a/libavfilter/vf_hue.c
+++ b/libavfilter/vf_hue.c
@@ -110,6 +110,8 @@ static av_cold int init(AVFilterContext *ctx, const char *args)
/* Convert angle from degrees to radians */
hue->hue = hue->hue_deg * M_PI / 180;
+ av_log(ctx, AV_LOG_VERBOSE, "hue:%f*PI hue_deg:%f saturation:%f\n",
+ hue->hue/M_PI, hue->hue*180/M_PI, hue->saturation);
return 0;
}