summaryrefslogtreecommitdiffstats
path: root/video/filter
diff options
context:
space:
mode:
Diffstat (limited to 'video/filter')
-rw-r--r--video/filter/vf.c1
-rw-r--r--video/filter/vf.h2
-rw-r--r--video/filter/vf_vo.c4
3 files changed, 1 insertions, 6 deletions
diff --git a/video/filter/vf.c b/video/filter/vf.c
index 85a03cfa85..a8469c9203 100644
--- a/video/filter/vf.c
+++ b/video/filter/vf.c
@@ -499,6 +499,7 @@ int vf_next_config(struct vf_instance *vf,
.colorspace = vf->fmt_in.params.colorspace,
.colorlevels = vf->fmt_in.params.colorlevels,
.chroma_location = vf->fmt_in.params.chroma_location,
+ .outputlevels = vf->fmt_in.params.outputlevels,
};
// Fix csp in case of pixel format change
mp_image_params_guess_csp(&p);
diff --git a/video/filter/vf.h b/video/filter/vf.h
index 29ce051869..730b0e0da0 100644
--- a/video/filter/vf.h
+++ b/video/filter/vf.h
@@ -106,8 +106,6 @@ typedef struct vf_seteq {
/* Hack to make the OSD state object available to vf_sub which
* access OSD/subtitle state outside of normal OSD draw time. */
#define VFCTRL_SET_OSD_OBJ 20
-#define VFCTRL_SET_YUV_COLORSPACE 22 // arg is struct mp_csp_details*
-#define VFCTRL_GET_YUV_COLORSPACE 23 // arg is struct mp_csp_details*
int vf_control(struct vf_instance *vf, int cmd, void *arg);
diff --git a/video/filter/vf_vo.c b/video/filter/vf_vo.c
index b3e7b7bd60..05f835d5fd 100644
--- a/video/filter/vf_vo.c
+++ b/video/filter/vf_vo.c
@@ -65,10 +65,6 @@ static int control(struct vf_instance *vf, int request, void *data)
return vo_control(video_out, VOCTRL_GET_DEINTERLACE, data) == VO_TRUE;
case VFCTRL_SET_DEINTERLACE:
return vo_control(video_out, VOCTRL_SET_DEINTERLACE, data) == VO_TRUE;
- case VFCTRL_GET_YUV_COLORSPACE:
- return vo_control(video_out, VOCTRL_GET_YUV_COLORSPACE, data) == true;
- case VFCTRL_SET_YUV_COLORSPACE:
- return vo_control(video_out, VOCTRL_SET_YUV_COLORSPACE, data) == true;
case VFCTRL_SET_EQUALIZER: {
vf_equalizer_t *eq = data;
if (!video_out->config_ok)