From: "Kim, HeungJun" <riverful.kim@samsung.com>
To: Hans Verkuil <hverkuil@xs4all.nl>
Cc: "linux-media@vger.kernel.org" <linux-media@vger.kernel.org>,
Laurent Pinchart <laurent.pinchart@ideasonboard.com>,
Sylwester Nawrocki <s.nawrocki@samsung.com>,
"kyungmin.park@samsung.com" <kyungmin.park@samsung.com>
Subject: Re: [RFC PATCH 1/2] v4l2-ctrls: change the boolean type of V4L2_CID_FOCUS_AUTO to menu type
Date: Thu, 24 Feb 2011 20:04:58 +0900 [thread overview]
Message-ID: <4D663B5A.6080204@samsung.com> (raw)
In-Reply-To: <201102241159.18508.hverkuil@xs4all.nl>
Hi Hans,
Thanks for reviewing, and I'll send another version including Docbook documents.
Regards,
Heungjun Kim
2011-02-24 오후 7:59, Hans Verkuil 쓴 글:
> On Thursday, February 24, 2011 11:45:22 Kim, HeungJun wrote:
>> For support more modes of autofocus, it changes the type of V4L2_CID_FOCUS_AUTO
>> from boolean to menu. And it includes 4 kinds of enumeration types:
>>
>> V4L2_FOCUS_AUTO, V4L2_FOCUS_MANUAL, V4L2_FOCUS_MACRO, V4L2_FOCUS_CONTINUOUS
>>
>> Signed-off-by: Heungjun Kim <riverful.kim@samsung.com>
>> Signed-off-by: Kyungmin Park <kyungmin.park@samsung.com>
>> ---
>> drivers/media/video/v4l2-ctrls.c | 11 ++++++++++-
>> include/linux/videodev2.h | 6 ++++++
>> 2 files changed, 16 insertions(+), 1 deletions(-)
>>
>> diff --git a/drivers/media/video/v4l2-ctrls.c b/drivers/media/video/v4l2-ctrls.c
>> index 2412f08..5c48d49 100644
>> --- a/drivers/media/video/v4l2-ctrls.c
>> +++ b/drivers/media/video/v4l2-ctrls.c
>> @@ -197,6 +197,13 @@ const char * const *v4l2_ctrl_get_menu(u32 id)
>> "Aperture Priority Mode",
>> NULL
>> };
>> + static const char * const camera_focus_auto[] = {
>> + "Auto Mode",
>> + "Manual Mode",
>> + "Macro Mode",
>> + "Continuous Mode",
>> + NULL
>> + };
>> static const char * const colorfx[] = {
>> "None",
>> "Black & White",
>> @@ -252,6 +259,8 @@ const char * const *v4l2_ctrl_get_menu(u32 id)
>> return camera_power_line_frequency;
>> case V4L2_CID_EXPOSURE_AUTO:
>> return camera_exposure_auto;
>> + case V4L2_CID_FOCUS_AUTO:
>> + return camera_focus_auto;
>> case V4L2_CID_COLORFX:
>> return colorfx;
>> case V4L2_CID_TUNE_PREEMPHASIS:
>> @@ -416,7 +425,6 @@ void v4l2_ctrl_fill(u32 id, const char **name, enum v4l2_ctrl_type *type,
>> case V4L2_CID_MPEG_VIDEO_GOP_CLOSURE:
>> case V4L2_CID_MPEG_VIDEO_PULLDOWN:
>> case V4L2_CID_EXPOSURE_AUTO_PRIORITY:
>> - case V4L2_CID_FOCUS_AUTO:
>> case V4L2_CID_PRIVACY:
>> case V4L2_CID_AUDIO_LIMITER_ENABLED:
>> case V4L2_CID_AUDIO_COMPRESSION_ENABLED:
>> @@ -450,6 +458,7 @@ void v4l2_ctrl_fill(u32 id, const char **name, enum v4l2_ctrl_type *type,
>> case V4L2_CID_MPEG_STREAM_TYPE:
>> case V4L2_CID_MPEG_STREAM_VBI_FMT:
>> case V4L2_CID_EXPOSURE_AUTO:
>> + case V4L2_CID_FOCUS_AUTO:
>> case V4L2_CID_COLORFX:
>> case V4L2_CID_TUNE_PREEMPHASIS:
>> *type = V4L2_CTRL_TYPE_MENU;
>> diff --git a/include/linux/videodev2.h b/include/linux/videodev2.h
>> index 5122b26..dda3e37 100644
>> --- a/include/linux/videodev2.h
>> +++ b/include/linux/videodev2.h
>> @@ -1374,6 +1374,12 @@ enum v4l2_exposure_auto_type {
>> #define V4L2_CID_FOCUS_ABSOLUTE (V4L2_CID_CAMERA_CLASS_BASE+10)
>> #define V4L2_CID_FOCUS_RELATIVE (V4L2_CID_CAMERA_CLASS_BASE+11)
>> #define V4L2_CID_FOCUS_AUTO (V4L2_CID_CAMERA_CLASS_BASE+12)
>> +enum v4l2_focus_auto_type {
>> + V4L2_FOCUS_AUTO = 0,
>> + V4L2_FOCUS_MANUAL = 1,
>
> Currently this is a boolean, so 0 means manual and 1 means auto. Let's keep
> that order. So FOCUS_AUTO should be 1 and FOCUS_MANUAL should be 0.
>
> The documentation of this control must also be updated in the V4L2 DocBook.
>
> Regards,
>
> Hans
>
>> + V4L2_FOCUS_MACRO = 2,
>> + V4L2_FOCUS_CONTINUOUS = 3
>> +};
>>
>> #define V4L2_CID_ZOOM_ABSOLUTE (V4L2_CID_CAMERA_CLASS_BASE+13)
>> #define V4L2_CID_ZOOM_RELATIVE (V4L2_CID_CAMERA_CLASS_BASE+14)
>>
>
prev parent reply other threads:[~2011-02-24 11:04 UTC|newest]
Thread overview: 3+ messages / expand[flat|nested] mbox.gz Atom feed top
2011-02-24 10:45 [RFC PATCH 1/2] v4l2-ctrls: change the boolean type of V4L2_CID_FOCUS_AUTO to menu type Kim, HeungJun
2011-02-24 10:59 ` Hans Verkuil
2011-02-24 11:04 ` Kim, HeungJun [this message]
Reply instructions:
You may reply publicly to this message via plain-text email
using any one of the following methods:
* Save the following mbox file, import it into your mail client,
and reply-to-all from there: mbox
Avoid top-posting and favor interleaved quoting:
https://en.wikipedia.org/wiki/Posting_style#Interleaved_style
* Reply using the --to, --cc, and --in-reply-to
switches of git-send-email(1):
git send-email \
--in-reply-to=4D663B5A.6080204@samsung.com \
--to=riverful.kim@samsung.com \
--cc=hverkuil@xs4all.nl \
--cc=kyungmin.park@samsung.com \
--cc=laurent.pinchart@ideasonboard.com \
--cc=linux-media@vger.kernel.org \
--cc=s.nawrocki@samsung.com \
/path/to/YOUR_REPLY
https://kernel.org/pub/software/scm/git/docs/git-send-email.html
* If your mail client supports setting the In-Reply-To header
via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line
before the message body.
This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.