All Projects → lu-zero → Mfx_dispatch

lu-zero / Mfx_dispatch

Licence: bsd-3-clause
Intel media sdk dispatcher

Labels

Projects that are alternatives of or similar to Mfx dispatch

Mythril
A hypervisor written in rust
Stars: ✭ 43 (-64.75%)
Mutual labels:  intel
Thor Os
Simple operating system in C++, written from scratch
Stars: ✭ 1,204 (+886.89%)
Mutual labels:  intel
Mcelog
Linux kernel machine check handling middleware
Stars: ✭ 96 (-21.31%)
Mutual labels:  intel
Nff Go
NFF-Go -Network Function Framework for GO (former YANFF)
Stars: ✭ 1,036 (+749.18%)
Mutual labels:  intel
Parenchyma
An extensible HPC framework for CUDA, OpenCL and native CPU.
Stars: ✭ 71 (-41.8%)
Mutual labels:  intel
Shadowreplay Linux
Shadowplay's Replay Feature On Linux For Nvidia, AMD and Intel
Stars: ✭ 79 (-35.25%)
Mutual labels:  intel
Papers
My presentations and papers
Stars: ✭ 40 (-67.21%)
Mutual labels:  intel
Optimus Manager Qt
An interface for Optimus Manager that allows to switch GPUs on Optimus laptops.
Stars: ✭ 115 (-5.74%)
Mutual labels:  intel
Interview Process Coding Questions
Interview Coding Questions for Several Companies encapsulated into one Repository
Stars: ✭ 74 (-39.34%)
Mutual labels:  intel
Xpedite
A non-sampling profiler purpose built to measure and optimize performance of ultra low latency/real time systems
Stars: ✭ 89 (-27.05%)
Mutual labels:  intel
People Counter Python
Create a smart video application using the Intel Distribution of OpenVINO toolkit. The toolkit uses models and inference to run single-class object detection.
Stars: ✭ 62 (-49.18%)
Mutual labels:  intel
Mate Optimus
NVIDIA Optimus GPU switcher
Stars: ✭ 70 (-42.62%)
Mutual labels:  intel
Pcm
Processor Counter Monitor
Stars: ✭ 1,240 (+916.39%)
Mutual labels:  intel
Undervolt
Undervolt Intel CPUs under Linux
Stars: ✭ 1,017 (+733.61%)
Mutual labels:  intel
Neorv32
A small and customizable full-scale 32-bit RISC-V soft-core CPU and SoC written in platform-independent VHDL.
Stars: ✭ 106 (-13.11%)
Mutual labels:  intel
Rsyocto
🤖 SoCFPGA: Open Source embedded Linux developed for Intel (ALTERA) SoC-FPGAs (Cyclone V & Arria 10)
Stars: ✭ 41 (-66.39%)
Mutual labels:  intel
Intel nuc led
Intel NUC7i[x]BN and NUC6CAY LED Control for Linux
Stars: ✭ 77 (-36.89%)
Mutual labels:  intel
Onemkl
oneAPI Math Kernel Library (oneMKL) Interfaces
Stars: ✭ 122 (+0%)
Mutual labels:  intel
Wufuc
Disables the "Unsupported Hardware" message in Windows Update, and allows you to continue installing updates on Windows 7 and 8.1 systems with Intel Kaby Lake, AMD Ryzen, or other unsupported processors.
Stars: ✭ 1,458 (+1095.08%)
Mutual labels:  intel
Waifu2x Ncnn Vulkan
waifu2x converter ncnn version, runs fast on intel / amd / nvidia GPU with vulkan
Stars: ✭ 1,258 (+931.15%)
Mutual labels:  intel

Autotooled version of the opensource Intel media sdk dispatcher.

LICENSE

Linux

Requirements

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

Building

autoreconf -i
./configure --prefix=/usr
make -j$(nproc)
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$(nproc)
make install DESTDIR=/usr/x86_64-w64-mingw32

Building on a native mingw-w64 environment

autoreconf -i
./configure --prefix=/mingw64
make -j$(nproc) install

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

Note that the project description data, including the texts, logos, images, and/or trademarks, for each open source project belongs to its rightful owner. If you wish to add or remove any projects, please contact us at [email protected].