diff options
author | Jan Beich <[email protected]> | 2020-01-03 16:23:43 +0000 |
---|---|---|
committer | Bradley Sepos <[email protected]> | 2020-01-23 02:55:00 -0500 |
commit | ef16eb2ece6ddae25b57ea002c369b773233e45d (patch) | |
tree | d10ac8a5afa8ce60a440eb440a3e518169403380 /make | |
parent | d4a1f1be6cfac1ef598e6c576ed247cd7a230a7f (diff) |
qsv: use system libmfx on FreeBSD
mfx_dispatcher isn't supported on FreeBSD, so link directly against
libmfx from open source edition of Intel MediaSDK. As only one
version of MediaSDK is supported it's installed under /usr/local
where other dependencies are.
Diffstat (limited to 'make')
-rw-r--r-- | make/include/main.defs | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/make/include/main.defs b/make/include/main.defs index 0123b54f5..c3a5951fc 100644 --- a/make/include/main.defs +++ b/make/include/main.defs @@ -53,8 +53,10 @@ MODULES += contrib/libdvdnav MODULES += contrib/libbluray ifeq (1,$(FEATURE.qsv)) +ifeq (,$(filter $(HOST.system),freebsd)) MODULES += contrib/libmfx endif +endif ifeq (1,$(FEATURE.vce)) MODULES += contrib/amf |