From mboxrd@z Thu Jan 1 00:00:00 1970 Return-path: Received: from ec2-52-27-115-49.us-west-2.compute.amazonaws.com ([52.27.115.49]:59079 "EHLO osg.samsung.com" rhost-flags-OK-OK-OK-FAIL) by vger.kernel.org with ESMTP id S1754533AbdDKLRj (ORCPT ); Tue, 11 Apr 2017 07:17:39 -0400 Date: Tue, 11 Apr 2017 08:17:28 -0300 From: Mauro Carvalho Chehab To: Hans Verkuil Cc: linux-media@vger.kernel.org, Laurent Pinchart , Sakari Ailus , Laurent Pinchart Subject: Re: [PATCHv4 04/15] v4l: vsp1: Add histogram support Message-ID: <20170411081728.4df93852@vento.lan> In-Reply-To: <20170410192651.18486-5-hverkuil@xs4all.nl> References: <20170410192651.18486-1-hverkuil@xs4all.nl> <20170410192651.18486-5-hverkuil@xs4all.nl> MIME-Version: 1.0 Content-Type: text/plain; charset=US-ASCII Content-Transfer-Encoding: 7bit Sender: linux-media-owner@vger.kernel.org List-ID: Em Mon, 10 Apr 2017 21:26:40 +0200 Hans Verkuil escreveu: > From: Laurent Pinchart > > The histogram common code will be used to implement support for both the > HGO and HGT histogram computation engines. > > Signed-off-by: Laurent Pinchart > --- > drivers/media/platform/Kconfig | 1 + > drivers/media/platform/vsp1/Makefile | 1 + > drivers/media/platform/vsp1/vsp1_histo.c | 646 +++++++++++++++++++++++++++++++ > drivers/media/platform/vsp1/vsp1_histo.h | 84 ++++ > 4 files changed, 732 insertions(+) > create mode 100644 drivers/media/platform/vsp1/vsp1_histo.c > create mode 100644 drivers/media/platform/vsp1/vsp1_histo.h > diff --git a/drivers/media/platform/vsp1/vsp1_histo.c b/drivers/media/platform/vsp1/vsp1_histo.c > new file mode 100644 > index 000000000000..afab77cf4fa5 > --- /dev/null > +++ b/drivers/media/platform/vsp1/vsp1_histo.c ... > + crop = vsp1_entity_get_pad_selection(&histo->entity, config, sel->pad, > + V4L2_SEL_TGT_CROP); > + > + /* > + * Clamp the width and height to acceptable values first and then > + * compute the closest rounded dividing ratio. > + * > + * Ratio Rounded ratio > + * -------------------------- > + * [1.0 1.5[ 1 Nitpick: 1.0 1.5] 1 Thanks, Mauro