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 91577463DE for ; Fri, 16 Jun 2023 00:58:55 +0000 (UTC) Received: from [127.0.1.1] (localhost [127.0.0.1]) by ffbox0-bg.mplayerhq.hu (Postfix) with ESMTP id 6D32468C373; Fri, 16 Jun 2023 03:58:49 +0300 (EEST) Received: from mga01.intel.com (mga01.intel.com [192.55.52.88]) by ffbox0-bg.mplayerhq.hu (Postfix) with ESMTPS id A95B168C57D for ; Fri, 16 Jun 2023 03:58:41 +0300 (EEST) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/simple; d=intel.com; i=@intel.com; q=dns/txt; s=Intel; t=1686877126; x=1718413126; h=from:to:subject:date:message-id:in-reply-to:references: mime-version:content-transfer-encoding; bh=z6ioUyMNOTAkPiHxjY/SrRF68ywdpflpMzMvrufS5UI=; b=gc1b8gWEo3kVZuVD7EPFSL5pb/tZvEDCj1N+K0vNX91WEJRjXukZdvh+ KIKh+/vUREgQ4M+kYyQ6qiQdRCh6e13wat97zmGwAmhuxQW3euNa1UUZc +2LWQi8IhEi5S62aJmEAvhyaS7svWI5pCGOywFt72dnycnmSzDI4JYCPW aEWNsMel2CEZLsL2K8a/lTVGIuGw5imRTgTd6Q7c+5OYff/tJ3EENr14i FxKyZKhHEEQ4Mt6MjnQO2gugs6kWhKNRLKK86X/Ryx+G/i/fZNRl73VZW nUCz219zikQhYKIbcafPbacRcWETz6hHXgRX2LlWbnrqjgQ07lRaVJyBY A==; X-IronPort-AV: E=McAfee;i="6600,9927,10742"; a="387700942" X-IronPort-AV: E=Sophos;i="6.00,246,1681196400"; d="scan'208";a="387700942" Received: from fmsmga005.fm.intel.com ([10.253.24.32]) by fmsmga101.fm.intel.com with ESMTP/TLS/ECDHE-RSA-AES256-GCM-SHA384; 15 Jun 2023 17:58:23 -0700 X-ExtLoop1: 1 X-IronPort-AV: E=McAfee;i="6600,9927,10742"; a="1042892217" X-IronPort-AV: E=Sophos;i="6.00,246,1681196400"; d="scan'208";a="1042892217" Received: from t-dg2.sh.intel.com ([10.238.200.108]) by fmsmga005.fm.intel.com with ESMTP; 15 Jun 2023 17:58:22 -0700 From: Fei Wang To: ffmpeg-devel@ffmpeg.org Date: Fri, 16 Jun 2023 08:58:09 +0800 Message-Id: <20230616005810.792849-2-fei.w.wang@intel.com> X-Mailer: git-send-email 2.25.1 In-Reply-To: <20230616005810.792849-1-fei.w.wang@intel.com> References: <20230616005810.792849-1-fei.w.wang@intel.com> MIME-Version: 1.0 Subject: [FFmpeg-devel] [PATCH v2 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".