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 D7C184665D for ; Tue, 30 May 2023 00:30:08 +0000 (UTC) Received: from [127.0.1.1] (localhost [127.0.0.1]) by ffbox0-bg.mplayerhq.hu (Postfix) with ESMTP id 18A5F68C233; Tue, 30 May 2023 03:30:02 +0300 (EEST) Received: from mga01.intel.com (mga01.intel.com [192.55.52.88]) by ffbox0-bg.mplayerhq.hu (Postfix) with ESMTPS id E695868BE95 for ; Tue, 30 May 2023 03:29:54 +0300 (EEST) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/simple; d=intel.com; i=@intel.com; q=dns/txt; s=Intel; t=1685406600; x=1716942600; h=from:to:subject:date:message-id:in-reply-to:references: mime-version:content-transfer-encoding; bh=z6ioUyMNOTAkPiHxjY/SrRF68ywdpflpMzMvrufS5UI=; b=IBkbUhPzi0uMcaKFqGgak6aCq+4kE0zNiurq7u7m1iVSyvn4AkxPV1nk zufPmhjw3Kbg2h4ucQbpA7Ltqaxxyo9G6sm1lS4AiVC+qXItU0LF8Os7Z bfVLO6DFn/wVhFLGk0mdsErsNrgjsnVsuNAEu3eEcOZDJDRN/0rUPxrof b3oRlm7M0K8k02w1PW+IPrECSYslLcdAj4fJ4GJGqKcOx2VheMD5YF80j U6q3uPSQ0ORR/LsKvRLKtH4rAoZoGjzqxRh6tXwajPhCW7TIsHaCFBv7A EMVFgWy/DKm0g1QxiBIiyX4mH5UQ28T6pEGu32WQtQ2qG3gvY6lH75/q3 A==; X-IronPort-AV: E=McAfee;i="6600,9927,10725"; a="383041734" X-IronPort-AV: E=Sophos;i="6.00,201,1681196400"; d="scan'208";a="383041734" Received: from fmsmga005.fm.intel.com ([10.253.24.32]) by fmsmga101.fm.intel.com with ESMTP/TLS/ECDHE-RSA-AES256-GCM-SHA384; 29 May 2023 17:29:47 -0700 X-ExtLoop1: 1 X-IronPort-AV: E=McAfee;i="6600,9927,10725"; a="1036367627" X-IronPort-AV: E=Sophos;i="6.00,201,1681196400"; d="scan'208";a="1036367627" Received: from t.sh.intel.com ([10.239.159.159]) by fmsmga005.fm.intel.com with ESMTP; 29 May 2023 17:29:46 -0700 From: Fei Wang To: ffmpeg-devel@ffmpeg.org Date: Tue, 30 May 2023 08:29:49 +0800 Message-Id: <20230530002950.1590409-2-fei.w.wang@intel.com> X-Mailer: git-send-email 2.25.1 In-Reply-To: <20230530002950.1590409-1-fei.w.wang@intel.com> References: <20230530002950.1590409-1-fei.w.wang@intel.com> MIME-Version: 1.0 Subject: [FFmpeg-devel] [PATCH v1 2/3] lavfi/vaapi: Add some debug message 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 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: Signed-off-by: Fei Wang --- libavfilter/vaapi_vpp.c | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/libavfilter/vaapi_vpp.c b/libavfilter/vaapi_vpp.c index 10d31977c6..4de19564e9 100644 --- a/libavfilter/vaapi_vpp.c +++ b/libavfilter/vaapi_vpp.c @@ -554,6 +554,10 @@ int ff_vaapi_vpp_init_params(AVFilterContext *avctx, if (err < 0) return err; + av_log(avctx, AV_LOG_DEBUG, "Filter frame from surface %#x to %#x.\n", + ff_vaapi_vpp_get_surface_id(input_frame), + ff_vaapi_vpp_get_surface_id(output_frame)); + return 0; } -- 2.25.1 _______________________________________________ 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".