From patchwork Tue Jun 23 18:28:02 2020 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Ezequiel Garcia X-Patchwork-Id: 209314 Return-Path: X-Spam-Checker-Version: SpamAssassin 3.4.0 (2014-02-07) on aws-us-west-2-korg-lkml-1.web.codeaurora.org X-Spam-Level: X-Spam-Status: No, score=-4.0 required=3.0 tests=HEADER_FROM_DIFFERENT_DOMAINS, MAILING_LIST_MULTI, SPF_HELO_NONE, SPF_PASS, UNPARSEABLE_RELAY, URIBL_BLOCKED, USER_AGENT_GIT autolearn=no autolearn_force=no version=3.4.0 Received: from mail.kernel.org (mail.kernel.org [198.145.29.99]) by smtp.lore.kernel.org (Postfix) with ESMTP id D9E20C433E1 for ; Tue, 23 Jun 2020 18:29:01 +0000 (UTC) Received: from vger.kernel.org (vger.kernel.org [23.128.96.18]) by mail.kernel.org (Postfix) with ESMTP id C5CEB207F9 for ; Tue, 23 Jun 2020 18:29:01 +0000 (UTC) Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S1733191AbgFWS26 (ORCPT ); Tue, 23 Jun 2020 14:28:58 -0400 Received: from lindbergh.monkeyblade.net ([23.128.96.19]:35090 "EHLO lindbergh.monkeyblade.net" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S1732549AbgFWS26 (ORCPT ); Tue, 23 Jun 2020 14:28:58 -0400 Received: from bhuna.collabora.co.uk (bhuna.collabora.co.uk [IPv6:2a00:1098:0:82:1000:25:2eeb:e3e3]) by lindbergh.monkeyblade.net (Postfix) with ESMTPS id 0F624C061573; Tue, 23 Jun 2020 11:28:58 -0700 (PDT) Received: from [127.0.0.1] (localhost [127.0.0.1]) (Authenticated sender: ezequiel) with ESMTPSA id 3DB212A376B From: Ezequiel Garcia To: linux-media@vger.kernel.org, linux-kernel@vger.kernel.org Cc: Tomasz Figa , kernel@collabora.com, Jonas Karlman , Hans Verkuil , Alexandre Courbot , Jeffrey Kardatzke , Nicolas Dufresne , Philipp Zabel , Maxime Ripard , Paul Kocialkowski , Ezequiel Garcia Subject: [RFC 0/7] media: Clean and make H264 stateless uAPI public Date: Tue, 23 Jun 2020 15:28:02 -0300 Message-Id: <20200623182809.1375-1-ezequiel@collabora.com> X-Mailer: git-send-email 2.26.0.rc2 MIME-Version: 1.0 Sender: linux-media-owner@vger.kernel.org Precedence: bulk List-ID: X-Mailing-List: linux-media@vger.kernel.org The recent patch posted by Jernej (which I'm including for context), encouraged me to address all the known issues in the uAPI. I hope we can finally make this uAPI interface public; it would be nice to address the other codec interfaces so we can move the codec drivers out of staging. It should be noted that there is already GStreamer native support for this interface, which will be part of 1.18, once it's released [1], as well as support in Chromium [2]. The basic idea here is to sanitize the interface, making sure the structs are aligned to 64-bit, adding reserved fields for padding where suitable. These reserved fields can then be used to support future extensions, in case such need appears. In addition to this, moving the slice invariant fields to the per-frame control, makes the frame-mode driver implementation much nicer and the interface; see patch 6/7 for details. I'm not adding a MAINTAINERS entry, but I'd like to do so, so we make sure any uAPI changes are sent to those involved. Another potential change is the addition of a "Since:" tag to the control specification, so we can document which kernel version added the interface. This might prove useful if reserved fields are then used to extend the interface. Finally, I'm sneaking here a change from Philipp Zabel which apparently fell thru the cracks. [1] https://gitlab.freedesktop.org/gstreamer/gst-plugins-bad/-/tree/master/sys/v4l2codecs [2] https://chromium.googlesource.com/chromium/src.git/+/refs/heads/master/media/gpu/v4l2/ Ezequiel Garcia (5): fixup! media: uapi: h264: update reference lists media: uapi: h264: increase size of fields media: uapi: h264: pad v4l2_ctrl_h264_pps to 64-bit media: uapi: h264: Clean slice invariants syntax elements media: uapi: make H264 stateless codec interface public Jernej Skrabec (1): media: uapi: h264: update reference lists Philipp Zabel (1): media: uapi: h264: clarify pic_order_cnt_bit_size field .../media/v4l/ext-ctrls-codec.rst | 135 ++++++++++++------ drivers/media/v4l2-core/v4l2-ctrls.c | 31 ++++ drivers/media/v4l2-core/v4l2-h264.c | 8 +- .../staging/media/hantro/hantro_g1_h264_dec.c | 21 ++- drivers/staging/media/hantro/hantro_h264.c | 3 +- drivers/staging/media/hantro/hantro_hw.h | 5 +- drivers/staging/media/rkvdec/rkvdec-h264.c | 6 +- .../staging/media/sunxi/cedrus/cedrus_h264.c | 15 +- include/media/v4l2-ctrls.h | 3 +- include/media/v4l2-h264.h | 5 +- .../linux/v4l2-h264-ctrls.h} | 73 ++++++---- 11 files changed, 194 insertions(+), 111 deletions(-) rename include/{media/h264-ctrls.h => uapi/linux/v4l2-h264-ctrls.h} (88%)