[GIT,PULL,FOR,v3.3] Add decoder API to V4L2
Message ID | 201201121632.02440.hverkuil@xs4all.nl (mailing list archive) |
---|---|
State | Rejected, archived |
Headers |
Received: from mail.tu-berlin.de ([130.149.7.33]) by www.linuxtv.org with esmtp (Exim 4.72) (envelope-from <linux-media-owner@vger.kernel.org>) id 1RlMdk-0001I3-2r for patchwork@linuxtv.org; Thu, 12 Jan 2012 16:32:32 +0100 X-tubIT-Incoming-IP: 209.132.180.67 Received: from vger.kernel.org ([209.132.180.67]) by mail.tu-berlin.de (exim-4.75/mailfrontend-4) with esmtp for <patchwork@linuxtv.org> id 1RlMdj-0001gR-BC; Thu, 12 Jan 2012 16:32:31 +0100 Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S1754016Ab2ALPcM (ORCPT <rfc822;patchwork@linuxtv.org>); Thu, 12 Jan 2012 10:32:12 -0500 Received: from ams-iport-1.cisco.com ([144.254.224.140]:28309 "EHLO ams-iport-1.cisco.com" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S1753958Ab2ALPcJ (ORCPT <rfc822;linux-media@vger.kernel.org>); Thu, 12 Jan 2012 10:32:09 -0500 X-IronPort-Anti-Spam-Filtered: true X-IronPort-Anti-Spam-Result: AvwEAJb8Dk+Q/khM/2dsb2JhbABDrQmBBYILASc/gT4TIodgmVkBng6MHQSVDpI9 X-IronPort-AV: E=Sophos;i="4.71,498,1320624000"; d="scan'208";a="126246429" Received: from ams-core-3.cisco.com ([144.254.72.76]) by ams-iport-1.cisco.com with ESMTP; 12 Jan 2012 15:32:07 +0000 Received: from cobaltpc1.localnet (dhcp-10-54-92-32.cisco.com [10.54.92.32]) by ams-core-3.cisco.com (8.14.3/8.14.3) with ESMTP id q0CFW7NZ028455; Thu, 12 Jan 2012 15:32:07 GMT From: Hans Verkuil <hverkuil@xs4all.nl> To: "linux-media" <linux-media@vger.kernel.org> Subject: [GIT PULL FOR v3.3] Add decoder API to V4L2 Date: Thu, 12 Jan 2012 16:32:02 +0100 User-Agent: KMail/1.13.7 (Linux/3.2-0.slh.2-aptosid-amd64; KDE/4.6.5; x86_64; ; ) Cc: Andy Walls <awalls@md.metrocast.net> MIME-Version: 1.0 Content-Type: Text/Plain; charset="us-ascii" Content-Transfer-Encoding: 7bit Message-Id: <201201121632.02440.hverkuil@xs4all.nl> Sender: linux-media-owner@vger.kernel.org Precedence: bulk List-ID: <linux-media.vger.kernel.org> X-Mailing-List: linux-media@vger.kernel.org X-PMX-Version: 5.6.1.2065439, Antispam-Engine: 2.7.2.376379, Antispam-Data: 2012.1.11.215414 X-PMX-Spam: Gauge=IIIIIIII, Probability=8%, Report=' BODYTEXTP_SIZE_3000_LESS 0, BODY_SIZE_2000_2999 0, BODY_SIZE_5000_LESS 0, BODY_SIZE_7000_LESS 0, __ANY_URI 0, __CP_MEDIA_BODY 0, __CP_URI_IN_BODY 0, __CT 0, __CTE 0, __CT_TEXT_PLAIN 0, __HAS_MSGID 0, __HAS_X_MAILING_LIST 0, __MIME_TEXT_ONLY 0, __MIME_VERSION 0, __SANE_MSGID 0, __TO_MALFORMED_2 0, __URI_NS , __USER_AGENT 0' |
Pull-request
git://linuxtv.org/hverkuil/media_tree.git decoder5Message
Hans Verkuil
Jan. 12, 2012, 3:32 p.m. UTC
Hi Mauro, Here is my pull request for the decoder API. The code is the same as the RFCv3 patch series: http://www.mail-archive.com/linux-media@vger.kernel.org/msg40516.html except for being rebased to the latest for_v3.3 branch. There is no urgency, so if you prefer then this can also be applied to 3.4. Regards, Hans The following changes since commit 240ab508aa9fb7a294b0ecb563b19ead000b2463: [media] [PATCH] don't reset the delivery system on DTV_CLEAR (2012-01-10 23:44:07 -0200) are available in the git repository at: git://linuxtv.org/hverkuil/media_tree.git decoder5 Hans Verkuil (8): v4l2: add VIDIOC_(TRY_)DECODER_CMD. v4l spec: document VIDIOC_(TRY_)DECODER_CMD. ivtv: implement new decoder command ioctls. v4l2-ctrls: add new controls for MPEG decoder devices. Document decoder controls. ivtv: implement new decoder controls. cx18/ddbridge: remove unused headers. ivtv: add IVTV_IOC_PASSTHROUGH_MODE. Documentation/DocBook/media/v4l/controls.xml | 59 +++++ Documentation/DocBook/media/v4l/v4l2.xml | 1 + .../DocBook/media/v4l/vidioc-decoder-cmd.xml | 256 ++++++++++++++++++++ .../DocBook/media/v4l/vidioc-encoder-cmd.xml | 9 +- drivers/media/dvb/ddbridge/ddbridge.h | 2 - drivers/media/video/cx18/cx18-driver.h | 2 - drivers/media/video/ivtv/ivtv-controls.c | 62 +++++ drivers/media/video/ivtv/ivtv-controls.h | 2 + drivers/media/video/ivtv/ivtv-driver.c | 37 +++- drivers/media/video/ivtv/ivtv-driver.h | 12 +- drivers/media/video/ivtv/ivtv-fileops.c | 2 +- drivers/media/video/ivtv/ivtv-ioctl.c | 181 +++++++------- drivers/media/video/ivtv/ivtv-streams.c | 9 +- drivers/media/video/v4l2-compat-ioctl32.c | 2 + drivers/media/video/v4l2-ctrls.c | 23 ++ drivers/media/video/v4l2-ioctl.c | 28 +++ include/linux/ivtv.h | 6 +- include/linux/videodev2.h | 66 +++++ include/media/v4l2-ioctl.h | 4 + 19 files changed, 652 insertions(+), 111 deletions(-) create mode 100644 Documentation/DocBook/media/v4l/vidioc-decoder-cmd.xml -- To unsubscribe from this list: send the line "unsubscribe linux-media" in the body of a message to majordomo@vger.kernel.org More majordomo info at http://vger.kernel.org/majordomo-info.html