The eXtra-fast Essential Video Decoder (XEVD) is an opensource and fast MPEG-5 EVC decoder.
MPEG-5 Essential Video Coding (EVC) is a video compression standard of ISO/IEC Moving Picture Experts Group (MPEG). The main goal of the EVC is to provide a significantly improved compression capability over existing video coding standards with timely publication of terms. The EVC defines two profiles, including "Baseline Profile" and "Main Profile". The "Baseline profile" contains only technologies that are older than 20 years or otherwise freely available for use in the standard. In addition, the "Main profile" adds a small number of additional tools, each of which can be either cleanly disabled or switched to the corresponding baseline tool on an individual basis.
Build Requirements
Build Instructions
$mkdir build
$cd build
$cmake ..
$make
Build Requirements
Build Instructions
$mkdir build
$cd build
$cmake .. -G "MinGW Makefiles"
$make
$mkdir build
$cd build
$cmake .. -G "Visual Studio 15 2017 Win64"
$make
You can change '-G' option with proper version of Visual Studio.
Build Requirements
Build Instructions
$mkdir build-arm
$cd build-arm
$cmake .. -DCMAKE_C_COMPILER=aarch64-linux-gnu-gcc -DCMAKE_SYSTEM_PROCESSOR=aarch64 -DARM=TRUE
$make
Generation of DEB packages instructions
$make package
or
cpack -G "DEB"
Generation of RPM packages
cpack -G "RPM" ..
Generation of ZIP archives
cpack -G "ZIP" ..
Requirements
Generation of NSIS windows installer instructions
Follow build instruction and build the project
Generate NSIS Windows installer
Command Prompt for Visual Studio
msbuild /P:Configuration=Release PACKAGE.vcxproj
Visual Studio IDE
As a result CPack processing message should appear and NSIS installer as well as as checksum file are generated into build directory.
MinGW-64
$make package
Output:
Baseline Profile:
Main Profile:
XEVD supports main and baseline profiles of EVC.
OPTION | DEFAULT | DESCRIPTION |
---|---|---|
-i, --input | - | file name of input bitstream |
-o, --output | - | file name of output video |
-m, --threads | 1 | mumber of threads to be created |
More options can be found when type xevd_app only.
$xevd_app -i input_bitstream.evc -o output_video.yuv
See COPYING file for details.