summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorHaihao Xiang <haihao.xiang@intel.com>2023-11-27 16:11:52 +0800
committerHaihao Xiang <haihao.xiang@intel.com>2023-12-05 10:10:29 +0800
commit5717fbbea262a028bcfa751e6c0e6798284dfade (patch)
treed66e56ff26acd843bc83fea6b911c7567deb43b2
parentd36d9994e4273371c457d37b0a161c887ae9f6b1 (diff)
configure: don't warn deprecated symbols from libvpl
libvpl deprecated some symbols (e.g. MFX_EXTBUFF_VPP_DENOISE2 is used to replace MFX_EXTBUFF_VPP_DENOISE), however the new symbols aren't support by MediaSDK runtime. In order to support the combination of libvpl and MediaSDK runtime on legacy devices, we continue to use the deprecated symbols in FFmpeg. This patch added -DMFX_DEPRECATED_OFF to CFLAGS to silence the corresponding compilation warnings. Signed-off-by: Haihao Xiang <haihao.xiang@intel.com>
-rwxr-xr-xconfigure1
1 files changed, 1 insertions, 0 deletions
diff --git a/configure b/configure
index 838e627084..d77c053226 100755
--- a/configure
+++ b/configure
@@ -6776,6 +6776,7 @@ elif enabled libvpl; then
# is extracted from "vpl >= 2.6"
check_pkg_config libmfx "vpl >= 2.6" "mfxvideo.h mfxdispatcher.h" MFXLoad || \
die "ERROR: libvpl >= 2.6 not found"
+ add_cflags -DMFX_DEPRECATED_OFF
fi
if enabled libmfx; then