From 7e6e77a51719a5ceb3fef384e4ed60da47e381c9 Mon Sep 17 00:00:00 2001 From: "Christopher R. Palmer" Date: Tue, 16 Sep 2014 04:36:44 -0400 Subject: [PATCH] exynos: libcsc: Add missing stub Change-Id: I0d4e15ada2d0149bb7207a9cf54b4bd4dac068dc --- include/csc.h | 2 ++ libcsc/csc.c | 5 +++++ 2 files changed, 7 insertions(+) diff --git a/include/csc.h b/include/csc.h index 728549d..7d20a66 100644 --- a/include/csc.h +++ b/include/csc.h @@ -454,6 +454,8 @@ CSC_ERRORCODE csc_convert( CSC_ERRORCODE csc_convert_with_rotation( void *handle, int rotation, int flip_horizontal, int flip_vertical); +CSC_ERRORCODE csc_set_eq_property(void *handle); + #ifdef __cplusplus } #endif diff --git a/libcsc/csc.c b/libcsc/csc.c index b2c8396..c318b68 100644 --- a/libcsc/csc.c +++ b/libcsc/csc.c @@ -896,3 +896,8 @@ CSC_ERRORCODE csc_convert_with_rotation( return ret; } + +CSC_ERRORCODE csc_set_eq_property(void *handle) +{ + return CSC_ErrorNone; +} -- 2.20.1