From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from ffbox0-bg.mplayerhq.hu (ffbox0-bg.ffmpeg.org [79.124.17.100]) by master.gitmailbox.com (Postfix) with ESMTP id D9D7740134 for ; Thu, 3 Nov 2022 11:41:58 +0000 (UTC) Received: from [127.0.1.1] (localhost [127.0.0.1]) by ffbox0-bg.mplayerhq.hu (Postfix) with ESMTP id 57E8968BF29; Thu, 3 Nov 2022 13:41:55 +0200 (EET) Received: from mail-pj1-f47.google.com (mail-pj1-f47.google.com [209.85.216.47]) by ffbox0-bg.mplayerhq.hu (Postfix) with ESMTPS id 30D9168BF1B for ; Thu, 3 Nov 2022 13:41:44 +0200 (EET) Received: by mail-pj1-f47.google.com with SMTP id h14so1350977pjv.4; Thu, 03 Nov 2022 04:41:44 -0700 (PDT) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=gmail.com; s=20210112; h=cc:to:mime-version:content-transfer-encoding:fcc:subject:date:from :references:in-reply-to:message-id:from:to:cc:subject:date :message-id:reply-to; bh=feZXQ6tmXzMx9WE9Nyt+ynMEZrBaHZapRhqSoJqEwus=; b=CFFpP0XwXX9G1hQDdb4/RHpEf9ap2pMc+Qqn2awVdlSZwgYlLaQhvh92/UW23j4PWo 9EpPiJqTRdaT1FtYoHAPbbB2P59RH/3uDIMRLPZi5lHGHPwbfDEyzPrrXC6csu4/sfDx qPwG/2njJ8g+2SVEyChK8IPdugm/iZbj7wIxHAlfjB35iCzXLtzv3M5S1nTwsebfH+YO sHG6xwEWQXZoveOy40gAsZJy/GWExE8x06NEfAUcK9kBi7BTM4fVeIwlkeugYOWXQpJV SV13WiBH8j5S1aQNiE+MctZApOSFCgpyOYgvNwLtm2cR3Pqm56FPvCBhDajeKIDfdxpk vInA== X-Google-DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=1e100.net; s=20210112; h=cc:to:mime-version:content-transfer-encoding:fcc:subject:date:from :references:in-reply-to:message-id:x-gm-message-state:from:to:cc :subject:date:message-id:reply-to; bh=feZXQ6tmXzMx9WE9Nyt+ynMEZrBaHZapRhqSoJqEwus=; b=VN+TJTd3V9HQGb3yra4pggabgEnc1kC3RQkFxv6T50+hDGgTqg7eLR6msOUM7cYajb cN9eobxgMqtKrVFJC5FcDD39ZSTUJQCxyiesBWfrWhxLlY6Rc6zGlhWj8gKaIqzr+fSW r12RqkjFExcyHptA0zQeMMXgJ/mELJC9PFftjSgD80AP0E497y1fTkyZ09a6FBXbOnOZ 8GHiqcF8p+FyoEk1UQOFUwYPW2G5vh+rJxueKEkmY6FT2TPKfHpA9g6wrLGPuWd8H2fH d+NZvZzYPh+ARD21AvODRSNDwFnjHvJrQCqxDZi1CkDyynv/TruiwZiqtCzY1jGrqvKK WH0Q== X-Gm-Message-State: ACrzQf2XUUeMzNI8jcWStYpM8FGd5cOgkmxzG7c4zIg3z78mjzg0CX4k SzAKDldRlPHSPR0r+BSONrzJAtHEvTo= X-Google-Smtp-Source: AMsMyM7wFaUTopJjf2xqwG7L/a18c9chlw+gEnlDu7SgtlAz1Y+1tqYfJY/Xiu4qRUQSg9DxEduuZA== X-Received: by 2002:a17:90b:4f86:b0:213:3918:f29e with SMTP id qe6-20020a17090b4f8600b002133918f29emr30256480pjb.178.1667475702507; Thu, 03 Nov 2022 04:41:42 -0700 (PDT) Received: from [127.0.0.1] (master.gitmailbox.com. [34.83.118.50]) by smtp.gmail.com with ESMTPSA id o184-20020a6341c1000000b0043c732e1536sm615120pga.45.2022.11.03.04.41.41 (version=TLS1_2 cipher=ECDHE-ECDSA-AES128-GCM-SHA256 bits=128/128); Thu, 03 Nov 2022 04:41:41 -0700 (PDT) Message-Id: In-Reply-To: References: From: ffmpegagent Date: Thu, 03 Nov 2022 11:41:39 +0000 Fcc: Sent MIME-Version: 1.0 To: ffmpeg-devel@ffmpeg.org Subject: [FFmpeg-devel] [PATCH v2 0/2] QSV Overlay Filter: Copy side data from input to output frame X-BeenThere: ffmpeg-devel@ffmpeg.org X-Mailman-Version: 2.1.29 Precedence: list List-Id: FFmpeg development discussions and patches List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Reply-To: FFmpeg development discussions and patches Cc: softworkz , "Xiang, Haihao" , Andreas Rheinhardt Content-Type: text/plain; charset="us-ascii" Content-Transfer-Encoding: 7bit Errors-To: ffmpeg-devel-bounces@ffmpeg.org Sender: "ffmpeg-devel" Archived-At: List-Archive: List-Post: This is split out from my earlier patchset "SEI parsing for QSV decoders" (https://github.com/ffstaging/FFmpeg/pull/31) as it is only logically related but not technically. The first patch had been reviewed and partially authored by Anton (I have indicated this with a signed-off line, please advise in case this wouldn't be right) The second patch performs the copying of side data from input to output frames. softworkz v2: * Fix commit message (avcodec > avfilter) * Bump version in version.h * Resolve rebase conflicts softworkz (2): avutil/frame: Add av_frame_copy_side_data() and av_frame_remove_all_side_data() avfilter/vpp_qsv: Copy side-data from input to output frame doc/APIchanges | 4 +++ libavfilter/qsvvpp.c | 6 ++++ libavfilter/vf_overlay_qsv.c | 19 +++++++--- libavutil/frame.c | 67 ++++++++++++++++++++++-------------- libavutil/frame.h | 32 +++++++++++++++++ libavutil/version.h | 2 +- 6 files changed, 99 insertions(+), 31 deletions(-) base-commit: 5661c8715ce4f752e676bda75b332efc669694ed Published-As: https://github.com/ffstaging/FFmpeg/releases/tag/pr-ffstaging-44%2Fsoftworkz%2Fsubmit_copy_sidedata-v2 Fetch-It-Via: git fetch https://github.com/ffstaging/FFmpeg pr-ffstaging-44/softworkz/submit_copy_sidedata-v2 Pull-Request: https://github.com/ffstaging/FFmpeg/pull/44 Range-diff vs v1: 1: 28c4b9e324 ! 1: d8cdd25105 avutil/frame: Add av_frame_copy_side_data() and av_frame_remove_all_side_data() @@ doc/APIchanges: libavutil: 2021-04-27 API changes, most recent first: -+2022-05-26 - xxxxxxxxx - lavu 57.40.100 - frame.h ++2022-05-26 - xxxxxxxxx - lavu 57.41.100 - frame.h + Add av_frame_remove_all_side_data(), av_frame_copy_side_data(), + AV_FRAME_TRANSFER_SD_COPY, and AV_FRAME_TRANSFER_SD_FILTER. -+ - 2022-10-11 - xxxxxxxxxx - lavu 57.39.101 - pixfmt.h - Add AV_PIX_FMT_RGBF32 and AV_PIX_FMT_RGBAF32. ++ + 2022-10-30 - xxxxxxxxxx - lavu 57.40.100 - channel_layout.h + Add AV_CH_LAYOUT_CUBE and AV_CHANNEL_LAYOUT_CUBE. ## libavutil/frame.c ## @@ libavutil/version.h */ #define LIBAVUTIL_VERSION_MAJOR 57 --#define LIBAVUTIL_VERSION_MINOR 39 --#define LIBAVUTIL_VERSION_MICRO 101 -+#define LIBAVUTIL_VERSION_MINOR 40 -+#define LIBAVUTIL_VERSION_MICRO 100 +-#define LIBAVUTIL_VERSION_MINOR 40 ++#define LIBAVUTIL_VERSION_MINOR 41 + #define LIBAVUTIL_VERSION_MICRO 100 #define LIBAVUTIL_VERSION_INT AV_VERSION_INT(LIBAVUTIL_VERSION_MAJOR, \ - LIBAVUTIL_VERSION_MINOR, \ 2: 43eb3257af ! 2: 0e71469a87 avcodec/vpp_qsv: Copy side data from input to output frame @@ Metadata Author: softworkz ## Commit message ## - avcodec/vpp_qsv: Copy side data from input to output frame + avfilter/vpp_qsv: Copy side-data from input to output frame Signed-off-by: softworkz -- ffmpeg-codebot _______________________________________________ ffmpeg-devel mailing list ffmpeg-devel@ffmpeg.org https://ffmpeg.org/mailman/listinfo/ffmpeg-devel To unsubscribe, visit link above, or email ffmpeg-devel-request@ffmpeg.org with subject "unsubscribe".