From mboxrd@z Thu Jan 1 00:00:00 1970 Return-path: Received: from mail-pz0-f42.google.com ([209.85.210.42]:53858 "EHLO mail-pz0-f42.google.com" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S1751315Ab1ISGIN (ORCPT ); Mon, 19 Sep 2011 02:08:13 -0400 Received: by pzk1 with SMTP id 1so10115445pzk.1 for ; Sun, 18 Sep 2011 23:08:13 -0700 (PDT) Message-ID: <4E76DC47.7050106@gmail.com> Date: Mon, 19 Sep 2011 11:38:07 +0530 From: Subash Patel MIME-Version: 1.0 To: Laurent Pinchart CC: Sylwester Nawrocki , linux-media@vger.kernel.org, m.szyprowski@samsung.com, kyungmin.park@samsung.com, sw0312.kim@samsung.com, riverful.kim@samsung.com Subject: Re: [PATCH 1/3] v4l: Extend V4L2_CID_COLORFX control with AQUA effect References: <1316192730-18099-1-git-send-email-s.nawrocki@samsung.com> <1316192730-18099-2-git-send-email-s.nawrocki@samsung.com> <201109190108.49283.laurent.pinchart@ideasonboard.com> In-Reply-To: <201109190108.49283.laurent.pinchart@ideasonboard.com> Content-Type: text/plain; charset=ISO-8859-1; format=flowed Content-Transfer-Encoding: 7bit Sender: linux-media-owner@vger.kernel.org List-ID: Hi Laurent, I am not representing Sylwester :), But with a similar sensor I use, Aqua means cool tone which is Cb/Cr manipulations. Regards, Subash On 09/19/2011 04:38 AM, Laurent Pinchart wrote: > Hi Sylwester, > > Thanks for the patch. > > On Friday 16 September 2011 19:05:28 Sylwester Nawrocki wrote: >> Add V4L2_COLORFX_AQUA image effect in the V4L2_CID_COLORFX menu. > > What's the aqua effect ? > >> Signed-off-by: Sylwester Nawrocki >> Signed-off-by: Kyungmin Park >> --- >> Documentation/DocBook/media/v4l/controls.xml | 5 +++-- >> include/linux/videodev2.h | 1 + >> 2 files changed, 4 insertions(+), 2 deletions(-) >> >> diff --git a/Documentation/DocBook/media/v4l/controls.xml >> b/Documentation/DocBook/media/v4l/controls.xml index 8516401..f3c6457 >> 100644 >> --- a/Documentation/DocBook/media/v4l/controls.xml >> +++ b/Documentation/DocBook/media/v4l/controls.xml >> @@ -294,8 +294,9 @@ minimum value disables backlight compensation. >> V4L2_COLORFX_SKETCH (5), >> V4L2_COLORFX_SKY_BLUE (6), >> V4L2_COLORFX_GRASS_GREEN (7), >> -V4L2_COLORFX_SKIN_WHITEN (8) and >> -V4L2_COLORFX_VIVID (9). >> +V4L2_COLORFX_SKIN_WHITEN (8), >> +V4L2_COLORFX_VIVID (9) and >> +V4L2_COLORFX_AQUA (10). >> >> >> V4L2_CID_ROTATE >> diff --git a/include/linux/videodev2.h b/include/linux/videodev2.h >> index fca24cc..5032226 100644 >> --- a/include/linux/videodev2.h >> +++ b/include/linux/videodev2.h >> @@ -1144,6 +1144,7 @@ enum v4l2_colorfx { >> V4L2_COLORFX_GRASS_GREEN = 7, >> V4L2_COLORFX_SKIN_WHITEN = 8, >> V4L2_COLORFX_VIVID = 9, >> + V4L2_COLORFX_AQUA = 10, >> }; >> #define V4L2_CID_AUTOBRIGHTNESS (V4L2_CID_BASE+32) >> #define V4L2_CID_BAND_STOP_FILTER (V4L2_CID_BASE+33) >