summaryrefslogtreecommitdiffstats
path: root/video/csputils.h
diff options
context:
space:
mode:
authorThomas Weißschuh <thomas@t-8ch.de>2023-02-15 21:08:51 +0000
committersfan5 <sfan5@live.de>2023-02-24 13:55:29 +0100
commit16f0cd546d4aa5fff43ba13ac9c3cf8fbb1c3433 (patch)
tree9cffd73acae28fb3f607b36344c4b40ad3796037 /video/csputils.h
parentfb48722234e94539c269d2f0034be8a87ca32ccb (diff)
downloadmpv-16f0cd546d4aa5fff43ba13ac9c3cf8fbb1c3433.tar.bz2
mpv-16f0cd546d4aa5fff43ba13ac9c3cf8fbb1c3433.tar.xz
video: make csp option definitions private
Diffstat (limited to 'video/csputils.h')
-rw-r--r--video/csputils.h20
1 files changed, 0 insertions, 20 deletions
diff --git a/video/csputils.h b/video/csputils.h
index 49b61c4963..cbf7df96e6 100644
--- a/video/csputils.h
+++ b/video/csputils.h
@@ -204,26 +204,6 @@ extern const struct m_opt_choice_alternatives mp_alpha_names[];
extern const struct m_sub_options mp_csp_equalizer_conf;
-enum mp_csp_equalizer_param {
- MP_CSP_EQ_BRIGHTNESS,
- MP_CSP_EQ_CONTRAST,
- MP_CSP_EQ_HUE,
- MP_CSP_EQ_SATURATION,
- MP_CSP_EQ_GAMMA,
- MP_CSP_EQ_COUNT,
-};
-
-// Default initialization with 0 is enough, except for the capabilities field
-struct mp_csp_equalizer_opts {
- // Value for each property is in the range [-100.0, 100.0].
- // 0.0 is default, meaning neutral or no change.
- float values[MP_CSP_EQ_COUNT];
- int output_levels;
-};
-
-void mp_csp_copy_equalizer_values(struct mp_csp_params *params,
- const struct mp_csp_equalizer_opts *eq);
-
struct mpv_global;
struct mp_csp_equalizer_state *mp_csp_equalizer_create(void *ta_parent,
struct mpv_global *global);