Skip to content

ezdev128/libmfx

 
 

Repository files navigation

Autotooled version of the opensource Intel media sdk dispatcher.

Linux

Requirements

  • A C/C++ compiler
  • autotools
  • libva

Building

autoreconf -i
./configure --prefix=/usr
make -j 18
make install

Windows

The dispatcher provided by Intel only works on MS visual studio builds due the fact it is written in C++ and mingw64 isn't ABI and library compatible. This set of build systems let you easily build a mingw-w64 one.

Requirements

  • MediaSDK drivers from Intel
  • mingw-w64 toolchain
  • autotools or cmake (pick your poison)

Building using autotools

Cross compile

autoreconf -i
./configure --host=x86_64-w64-mingw32
make -j
make install DESTDIR=/usr/x86_64-w64-mingw32

Building on a native mingw-w64 environment

autoreconf -i
./configure --prefix=/mingw64
make -j 8 install

NOTE: Make sure you set the prefix to the correct one for your environment otherwise it will fail to link.

About

Intel media sdk dispatcher

Resources

License

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages

  • C++ 66.0%
  • C 21.4%
  • Objective-C 7.0%
  • M4 4.3%
  • Other 1.3%