Skip to content
elthariel edited this page Apr 27, 2013 · 4 revisions

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

# autoreconf -i

# ./configure --host=x86_64-w64-mingw32

# make -j

# make install DESTDIR=/usr/x86_64-w64-mingw32

Building with Cmake

The Cmake version of mfx_dispatch can be found here : github.com/elthariel/mfx_dispatch (until this is merged. If you see CMakeFile.txt files in the source code, it might have been done already)

# ln -s sdk /intel/mediasdk/path

# mkdir build && cd build

# cmake . -DCMAKE_INSTALL_PREFIX=/usr/x86_64-w64-mingw32

# make -j

# make install

Clone this wiki locally