From nobody Fri Jun 19 17:11:51 2026 Return-Path: X-Spam-Checker-Version: SpamAssassin 3.4.0 (2014-02-07) on aws-us-west-2-korg-lkml-1.web.codeaurora.org Received: from vger.kernel.org (vger.kernel.org [23.128.96.18]) by smtp.lore.kernel.org (Postfix) with ESMTP id 7812FC433F5 for ; Thu, 31 Mar 2022 19:37:46 +0000 (UTC) Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S240791AbiCaTjb (ORCPT ); Thu, 31 Mar 2022 15:39:31 -0400 Received: from lindbergh.monkeyblade.net ([23.128.96.19]:44288 "EHLO lindbergh.monkeyblade.net" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S240766AbiCaTjZ (ORCPT ); Thu, 31 Mar 2022 15:39:25 -0400 Received: from bhuna.collabora.co.uk (bhuna.collabora.co.uk [46.235.227.227]) by lindbergh.monkeyblade.net (Postfix) with ESMTPS id 5D47F1EE8DC for ; Thu, 31 Mar 2022 12:37:35 -0700 (PDT) Received: from [127.0.0.1] (localhost [127.0.0.1]) (Authenticated sender: nicolas) with ESMTPSA id A269C1F4717F DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/simple; d=collabora.com; s=mail; t=1648755454; bh=Edw3SbheuMmwCjS12qI9A8wl/WA5UMl6ZvQO/fCD7g0=; h=From:To:Cc:Subject:Date:From; b=eXbrCtJxaIMjgbElwyk4XHp664SuIrjNOOF5sJzMp9/FqjT+y93AGXyfEgfDOBkQY U03UdScLFI8E/MtZVjl1Ld+76CN+dX1Qa/vz358EKhiNdVnQ8bT120/UqZJmPQ1MZX cRdwenLAuSS9x3FUQ90NY3H+UKoHcRB6JetXJsGGupkT/aqejh13qo5hGc/49Rfk+6 fKA4ZoZdmSh1ESHx+uGfg6fd1Hcoj3gUJmgT4hUR1rOIfwWtzfLHfShaW3//6syDiA jAC56kyeNOD9KrSGMGgDJowFcHOocWwQbzApiwqVvExlJCWb55AyAsO1dOanB3hN9X lIFEy7u+CVftA== From: Nicolas Dufresne Cc: kernel@collabora.com, linux-kernel@vger.kernel.org Subject: [PATCH v2 00/23] H.264 Field Decoding Support for Frame-based Decoders Date: Thu, 31 Mar 2022 15:37:02 -0400 Message-Id: <20220331193726.289559-1-nicolas.dufresne@collabora.com> X-Mailer: git-send-email 2.34.1 MIME-Version: 1.0 Content-Transfer-Encoding: quoted-printable To: unlisted-recipients:; (no To-header on input) Precedence: bulk List-ID: X-Mailing-List: linux-kernel@vger.kernel.org Content-Type: text/plain; charset="utf-8" Until now, only Cedrus (a slice base decoder) supported interlaced decoding. In order to support field decoding in our frame-based decoder, the v4l2-h264 library needed adaptation to produce the appropriate reference lists. This patch extends the v4l2-h264 library to produce the larger references list needed to represent fields separately. Hantro, MTK-VCODEC and RKVDEC drivers have been adapted to accommodate the larger lists. Though, only Hantro and RKVDEC actually have HW support for field decoding. So only these two have been updated to make use of the larger lists. All this work has been done using the H.264 specification, LibreELEC downstream kernel patches, Rockchip MPP reference software and Hantro reference software. For reviewers, the following is the map of all commit. Patches that could be merge independently of this serie are marked as independent. Note that the test results do depend on the generic fixes. 01 : Documentation fix (independent) 02-03 : Improving some generic traces (independent) 04 : Minor v4l2-h264 fix (independent) 05-11 : v4l2-h264 field decoding support 12-15 : rkvdec h.264 generic fixes (independent) 16-19 : rkvdec h.264 field decoding support 20-23 : hantro h.264 field decoding support All this work have been tested using GStreamer mainline implementation but also with FFMPEG LibreELEC fork using the testing tool fluster running through the ITU-T H.264 (2016-02) AVCv2 set of bitstream. Before this patch, the scores were: Hantro: FFMPEG: 88/135 GSteamer: 90/135 RKVDEC: FFMPEG: 73/135 GSteamer: 77/135 And after these changes: Hantro: FFMPEG: 118/135 GSteamer: 129/135 RKVDEC: FFMPEG: 118/135 GSteamer: 129/135 Note that a bug in FFMPEG / LibreELEC fork was noticed and fixed with the following change: diff --git a/libavcodec/v4l2_request_h264.c b/libavcodec/v4l2_request_h264.c index 88da8f0a2d..394bae0550 100644 --- a/libavcodec/v4l2_request_h264.c +++ b/libavcodec/v4l2_request_h264.c @@ -66,7 +66,7 @@ static void fill_dpb_entry(struct v4l2_h264_dpb_entry *en= try, const H264Picture { entry->reference_ts =3D ff_v4l2_request_get_capture_timestamp(pic->f); entry->pic_num =3D pic->pic_id; - entry->frame_num =3D pic->frame_num; + entry->frame_num =3D pic->long_ref ? pic->pic_id : pic->frame_num; entry->fields =3D pic->reference & V4L2_H264_FRAME_REF; entry->flags =3D V4L2_H264_DPB_ENTRY_FLAG_VALID; if (entry->fields) Some useful links: Detailed Hantro Results: https://gitlab.freedesktop.org/-/snippets/5189 Detailed RKVDEC Results: https://gitlab.freedesktop.org/-/snippets/5253 ITU-T H.264 (2016-02) AVCv2: https://www.itu.int/net/itu-t/sigdb/spevideo/V= ideoForm-s.aspx?val=3D102002641 Fluster: https://github.com/fluendo/fluster GStreamer: https://gitlab.freedesktop.org/gstreamer/gstre= amer/ FFMPEG Fork: https://github.com/jernejsk/FFmpeg/tree/v4l2-r= equest-hwaccel-4.4 Rockchip MPP: https://github.com/rockchip-linux/mpp Changes in v2: - Applied most of Sebastian's suggestion in comments and commit messages. - Use a bool for dpb_valid and dpb_bottom in rkvdec - Dropped one wrong typo fix (media: v4l2-mem2mem: Fix typo in trace messag= e) - Dropped Alex fix (media: rkvdec-h264: Don't hardcode SPS/PPS parameters + I will carry this one later, it seems cosmetic Jonas Karlman (5): media: rkvdec: h264: Fix bit depth wrap in pps packet media: rkvdec: h264: Validate and use pic width and height in mbs media: rkvdec: h264: Fix reference frame_num wrap for second field media: rkvdec: Ensure decoded resolution fit coded resolution media: hantro: h264: Make dpb entry management more robust Nicolas Dufresne (17): media: doc: Document dual use of H.264 pic_num/frame_num media: v4l2-mem2mem: Trace on implicit un-hold media: h264: Avoid wrapping long_term_frame_idx media: h264: Use v4l2_h264_reference for reflist media: h264: Increase reference lists size to 32 media: h264: Store current picture fields media: h264: Store all fields into the unordered list media: v4l2: Trace calculated p/b0/b1 initial reflist media: h264: Sort p/b reflist using frame_num media: v4l2: Reorder field reflist media: rkvdec: Stop overclocking the decoder media: rkvdec: h264: Fix dpb_valid implementation media: rkvdec: Enable capture buffer holding for H264 media: rkvdec-h264: Add field decoding support media: hantro: Enable HOLD_CAPTURE_BUF for H.264 media: hantro: Stop using H.264 parameter pic_num media: hantro: Add H.264 field decoding support Sebastian Fricke (1): media: videobuf2-v4l2: Warn on holding buffers without support .../media/v4l/ext-ctrls-codec-stateless.rst | 10 +- .../media/common/videobuf2/videobuf2-v4l2.c | 7 +- .../mediatek/vcodec/vdec/vdec_h264_req_if.c | 17 +- drivers/media/v4l2-core/v4l2-h264.c | 261 ++++++++++++++---- drivers/media/v4l2-core/v4l2-mem2mem.c | 1 + .../staging/media/hantro/hantro_g1_h264_dec.c | 38 +-- drivers/staging/media/hantro/hantro_h264.c | 119 ++++++-- drivers/staging/media/hantro/hantro_hw.h | 7 +- drivers/staging/media/hantro/hantro_v4l2.c | 25 ++ .../media/hantro/rockchip_vpu2_hw_h264_dec.c | 98 +++---- drivers/staging/media/rkvdec/rkvdec-h264.c | 91 +++--- drivers/staging/media/rkvdec/rkvdec.c | 22 +- drivers/staging/media/rkvdec/rkvdec.h | 1 + include/media/v4l2-h264.h | 31 ++- 14 files changed, 520 insertions(+), 208 deletions(-) -- 2.34.1