From 08d3ef3d9e94609d1fc6c4c0892b17945bc7d0f8 Mon Sep 17 00:00:00 2001 From: Niklas Haas Date: Mon, 4 May 2015 01:27:55 +0200 Subject: sws_utils: re-use avcolorspace for sws colorspaces This lets us avoid having to maintain two separate copies of the colorspace mapping functions. --- video/sws_utils.c | 9 +++------ 1 file changed, 3 insertions(+), 6 deletions(-) (limited to 'video/sws_utils.c') diff --git a/video/sws_utils.c b/video/sws_utils.c index 8997b20649..bf5ad8f1a4 100644 --- a/video/sws_utils.c +++ b/video/sws_utils.c @@ -107,12 +107,9 @@ bool mp_sws_supported_format(int imgfmt) static int mp_csp_to_sws_colorspace(enum mp_csp csp) { - switch (csp) { - case MP_CSP_BT_601: return SWS_CS_ITU601; - case MP_CSP_BT_709: return SWS_CS_ITU709; - case MP_CSP_SMPTE_240M: return SWS_CS_SMPTE240M; - default: return SWS_CS_DEFAULT; - } + // The SWS_CS_* macros are just convenience redefinitions of the + // AVCOL_SPC_* macros, inside swscale.h. + return mp_csp_to_avcol_spc(csp); } static bool cache_valid(struct mp_sws_context *ctx) -- cgit v1.2.3