From patchwork Fri Mar 4 08:58:01 2011 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Michael Jones X-Patchwork-Id: 5991 Return-path: Envelope-to: mchehab@pedra Delivery-date: Fri, 04 Mar 2011 07:34:27 -0300 Received: from mchehab by pedra with local (Exim 4.72) (envelope-from ) id 1PvSL5-00061H-5x for mchehab@pedra; Fri, 04 Mar 2011 07:34:27 -0300 Received: from casper.infradead.org [85.118.1.10] by pedra with IMAP (fetchmail-6.3.17) for (single-drop); Fri, 04 Mar 2011 07:34:27 -0300 (BRT) Received: from vger.kernel.org ([209.132.180.67]) by casper.infradead.org with esmtp (Exim 4.72 #1 (Red Hat Linux)) id 1PvQqd-00083o-Gr; Fri, 04 Mar 2011 08:58:55 +0000 Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S1759299Ab1CDI6h (ORCPT + 1 other); Fri, 4 Mar 2011 03:58:37 -0500 Received: from mail1.matrix-vision.com ([78.47.19.71]:42347 "EHLO mail1.matrix-vision.com" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S1753655Ab1CDI6f (ORCPT ); Fri, 4 Mar 2011 03:58:35 -0500 Received: from mail1.matrix-vision.com (localhost [127.0.0.1]) by mail1.matrix-vision.com (Postfix) with ESMTP id 123D3722AD; Fri, 4 Mar 2011 09:58:35 +0100 (CET) Received: from erinome (g2.matrix-vision.com [80.152.136.245]) by mail1.matrix-vision.com (Postfix) with ESMTPA id E17787214C; Fri, 4 Mar 2011 09:58:34 +0100 (CET) Received: from erinome (localhost [127.0.0.1]) by erinome (Postfix) with ESMTP id 5BF2B6F8A; Fri, 4 Mar 2011 09:58:34 +0100 (CET) Received: by erinome (Postfix, from userid 108) id 515F96F9C; Fri, 4 Mar 2011 09:58:34 +0100 (CET) Received: from ap437-joe.intern.matrix-vision.de (host65-46.intern.matrix-vision.de [192.168.65.46]) by erinome (Postfix) with ESMTPA id 2FAAD6F8A; Fri, 4 Mar 2011 09:58:34 +0100 (CET) From: Michael Jones To: Laurent Pinchart , linux-media@vger.kernel.org Cc: Sakari Ailus , Hans Verkuil Subject: [PATCH 1/4] v4l: add V4L2_PIX_FMT_Y12 format Date: Fri, 4 Mar 2011 09:58:01 +0100 Message-Id: <1299229084-8335-2-git-send-email-michael.jones@matrix-vision.de> X-Mailer: git-send-email 1.7.4.1 In-Reply-To: <1299229084-8335-1-git-send-email-michael.jones@matrix-vision.de> References: <1299229084-8335-1-git-send-email-michael.jones@matrix-vision.de> X-MV-Disclaimer: true (erinome) X-AV-Checked: ClamAV using ClamSMTP (erinome) X-AV-Checked: ClamAV using ClamSMTP (mail1) Precedence: bulk List-ID: X-Mailing-List: linux-media@vger.kernel.org Sender: Signed-off-by: Michael Jones Acked-by: Laurent Pinchart --- include/linux/videodev2.h | 1 + 1 files changed, 1 insertions(+), 0 deletions(-) diff --git a/include/linux/videodev2.h b/include/linux/videodev2.h index 02da9e7..6fac463 100644 --- a/include/linux/videodev2.h +++ b/include/linux/videodev2.h @@ -288,6 +288,7 @@ struct v4l2_pix_format { #define V4L2_PIX_FMT_Y4 v4l2_fourcc('Y', '0', '4', ' ') /* 4 Greyscale */ #define V4L2_PIX_FMT_Y6 v4l2_fourcc('Y', '0', '6', ' ') /* 6 Greyscale */ #define V4L2_PIX_FMT_Y10 v4l2_fourcc('Y', '1', '0', ' ') /* 10 Greyscale */ +#define V4L2_PIX_FMT_Y12 v4l2_fourcc('Y', '1', '2', ' ') /* 12 Greyscale */ #define V4L2_PIX_FMT_Y16 v4l2_fourcc('Y', '1', '6', ' ') /* 16 Greyscale */ /* Palette formats */