From patchwork Thu Jan 27 12:31:06 2011 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Laurent Pinchart X-Patchwork-Id: 511711 Received: from vger.kernel.org (vger.kernel.org [209.132.180.67]) by demeter1.kernel.org (8.14.4/8.14.3) with ESMTP id p0RCWnRL004009 for ; Thu, 27 Jan 2011 12:32:56 GMT Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S1753739Ab1A0Mby (ORCPT ); Thu, 27 Jan 2011 07:31:54 -0500 Received: from perceval.ideasonboard.com ([95.142.166.194]:59832 "EHLO perceval.ideasonboard.com" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S1753480Ab1A0MbX (ORCPT ); Thu, 27 Jan 2011 07:31:23 -0500 Received: from localhost.localdomain (unknown [91.178.11.103]) by perceval.ideasonboard.com (Postfix) with ESMTPSA id CFF5035CBE; Thu, 27 Jan 2011 12:31:11 +0000 (UTC) From: Laurent Pinchart To: linux-media@vger.kernel.org Cc: sakari.ailus@maxwell.research.nokia.com Subject: [PATCH v1 2/8] v4l: Add subdev sensor g_skip_frames operation Date: Thu, 27 Jan 2011 13:31:06 +0100 Message-Id: <1296131472-30045-3-git-send-email-laurent.pinchart@ideasonboard.com> X-Mailer: git-send-email 1.7.3.4 In-Reply-To: <1296131472-30045-1-git-send-email-laurent.pinchart@ideasonboard.com> References: <1296131472-30045-1-git-send-email-laurent.pinchart@ideasonboard.com> Sender: linux-media-owner@vger.kernel.org Precedence: bulk List-ID: X-Mailing-List: linux-media@vger.kernel.org X-Greylist: IP, sender and recipient auto-whitelisted, not delayed by milter-greylist-4.2.6 (demeter1.kernel.org [140.211.167.41]); Thu, 27 Jan 2011 12:32:56 +0000 (UTC) diff --git a/include/media/v4l2-subdev.h b/include/media/v4l2-subdev.h index a02663e..181de59 100644 --- a/include/media/v4l2-subdev.h +++ b/include/media/v4l2-subdev.h @@ -352,9 +352,13 @@ struct v4l2_subdev_vbi_ops { * This is needed for some sensors, which always corrupt * several top lines of the output image, or which send their * metadata in them. + * @g_skip_frames: number of frames to skip at stream start. This is needed for + * buggy sensors that generate faulty frames when they are + * turned on. */ struct v4l2_subdev_sensor_ops { int (*g_skip_top_lines)(struct v4l2_subdev *sd, u32 *lines); + int (*g_skip_frames)(struct v4l2_subdev *sd, u32 *frames); }; /*