From a7e45cfa11853a2a22863c8a12f96b658d04ecf5 Mon Sep 17 00:00:00 2001 From: Michael Niedermayer Date: Thu, 25 Jul 2013 02:42:09 +0200 Subject: [PATCH] swscale/sws_getColorspaceDetails: dont fail for non yuv Signed-off-by: Michael Niedermayer --- libswscale/utils.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/libswscale/utils.c b/libswscale/utils.c index c8b53c7d41..cff0ad8cb9 100644 --- a/libswscale/utils.c +++ b/libswscale/utils.c @@ -1006,7 +1006,7 @@ int sws_getColorspaceDetails(struct SwsContext *c, int **inv_table, int *srcRange, int **table, int *dstRange, int *brightness, int *contrast, int *saturation) { - if (!c || isYUV(c->dstFormat) || isGray(c->dstFormat)) + if (!c ) return -1; *inv_table = c->srcColorspaceTable;