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 DA98242D9D for ; Sun, 7 Aug 2022 15:13:15 +0000 (UTC) Received: from [127.0.1.1] (localhost [127.0.0.1]) by ffbox0-bg.mplayerhq.hu (Postfix) with ESMTP id D45CA68B6D5; Sun, 7 Aug 2022 18:13:04 +0300 (EEST) Received: from btbn.de (btbn.de [136.243.74.85]) by ffbox0-bg.mplayerhq.hu (Postfix) with ESMTPS id CFDD668B641 for ; Sun, 7 Aug 2022 18:12:57 +0300 (EEST) Received: from [authenticated] by btbn.de (Postfix) with ESMTPSA id 5EAAA2DD9F0; Sun, 7 Aug 2022 17:12:57 +0200 (CEST) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=rothenpieler.org; s=mail; t=1659885177; bh=EEurZpy5GO/iam+ZJ2ul9bs0cpgtKScob8hrbmliPFY=; h=From:To:Cc:Subject:Date:In-Reply-To:References; b=IAaDPq4uIrDyND/RVbuI7uEi5p00l6AR9k5btehUhmpRVgfs7kqnJeerTH4cgbkn/ 4eeTvd2tfhfE/zEmw/QWk1PJQ+qDLTtCQpN/ZS6w5WTZJ01T2blKWbAh3zdLdToROK GkK1b/vbDFicl3517v3Aq4A/9nFfC3gXVzEHPw8UNUI8s2abPG4rJHbl7Ndd2DtRIF btMzpj9L0Mfd1tIlppY5OGxkxs/rfbUJL0Buw7iMdSMcwPQhRF7ESTQdQOP7En012l oWFqiFL2e9S7x/FShpuzYZXAlqXdnMc2al3pMnbRMLsENmzh0rSdOlL83C4PHyViac 9jKiOSedYdA+Q== From: Timo Rothenpieler To: ffmpeg-devel@ffmpeg.org Date: Sun, 7 Aug 2022 17:12:47 +0200 Message-Id: <20220807151248.15182-2-timo@rothenpieler.org> X-Mailer: git-send-email 2.34.1 In-Reply-To: <20220807151248.15182-1-timo@rothenpieler.org> References: <20220807151248.15182-1-timo@rothenpieler.org> MIME-Version: 1.0 Subject: [FFmpeg-devel] [PATCH 2/3] fftools: add DPI awareness manifest 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: Timo Rothenpieler 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: Some filters, like gdigrab, rely on this to be set to see and report proper dimensions. --- fftools/Makefile | 3 +++ fftools/fftools.manifest | 9 +++++++++ fftools/fftoolsres.rc | 2 ++ 3 files changed, 14 insertions(+) create mode 100644 fftools/fftools.manifest create mode 100644 fftools/fftoolsres.rc diff --git a/fftools/Makefile b/fftools/Makefile index 6285e6eacb..0348ac9cf1 100644 --- a/fftools/Makefile +++ b/fftools/Makefile @@ -20,6 +20,9 @@ OBJS-ffmpeg += \ define DOFFTOOL OBJS-$(1) += fftools/cmdutils.o fftools/opt_common.o fftools/$(1).o $(OBJS-$(1)-yes) +ifdef HAVE_GNU_WINDRES +OBJS-$(1) += fftools/fftoolsres.o +endif $(1)$(PROGSSUF)_g$(EXESUF): $$(OBJS-$(1)) $$(OBJS-$(1)): | fftools $$(OBJS-$(1)): CFLAGS += $(CFLAGS-$(1)) diff --git a/fftools/fftools.manifest b/fftools/fftools.manifest new file mode 100644 index 0000000000..f2708ecb13 --- /dev/null +++ b/fftools/fftools.manifest @@ -0,0 +1,9 @@ + + + + + true + PerMonitorV2 + + + diff --git a/fftools/fftoolsres.rc b/fftools/fftoolsres.rc new file mode 100644 index 0000000000..0b8b7c86cb --- /dev/null +++ b/fftools/fftoolsres.rc @@ -0,0 +1,2 @@ +#include +1 RT_MANIFEST fftools.manifest -- 2.34.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".