aboutsummaryrefslogtreecommitdiffhomepage
path: root/video/out/vo_direct3d.c
diff options
context:
space:
mode:
authorGravatar wm4 <wm4@nowhere>2015-01-06 15:21:26 +0100
committerGravatar wm4 <wm4@nowhere>2015-01-06 16:51:02 +0100
commit5410a5b2c55b5c7d9889451c1d6e56c697325a2c (patch)
treee7989451ced95a879a1d92b9037db86fa6b4c9e0 /video/out/vo_direct3d.c
parenta52ca8a2b075388dc7dd5012e4e3f4871e26b133 (diff)
csputils: move image_params -> csp_params into a function
Although the line count increases, this is better for making sure everything is handled consistently for all users of the mp_csp_params stuff. This also makes sure mp_csp_params is always initialized with MP_CSP_PARAMS_DEFAULTS (for consistency).
Diffstat (limited to 'video/out/vo_direct3d.c')
-rw-r--r--video/out/vo_direct3d.c4
1 files changed, 1 insertions, 3 deletions
diff --git a/video/out/vo_direct3d.c b/video/out/vo_direct3d.c
index 4a2c86aab7..7183f7d555 100644
--- a/video/out/vo_direct3d.c
+++ b/video/out/vo_direct3d.c
@@ -1152,9 +1152,7 @@ static void update_colorspace(d3d_priv *priv)
{
float coeff[3][4];
struct mp_csp_params csp = MP_CSP_PARAMS_DEFAULTS;
- csp.colorspace = priv->params.colorspace;
- csp.levels_in = priv->params.colorlevels;
- csp.levels_out = priv->params.outputlevels;
+ mp_csp_set_image_params(&csp, &priv->params);
mp_csp_copy_equalizer_values(&csp, &priv->video_eq);
if (priv->use_shaders) {