Skip to content
Snippets Groups Projects
Forked from jvet / VVCSoftware_VTM
7918 commits behind the upstream repository.
Max Bläser's avatar
Max Bläser authored
Fix output of bit and tool statistics. If RExt__DECODER_DEBUG_BIT_STATISTICS and RExt__DECODER_DEBUG_TOOL_STATISTICS are enabled, the decoder throws and exception as size of enum CodingStatisticsType and the size of the statNames array don't match. Further, the order of the enum has to match the order of the labels. Also, the bit counter for JVET_L0283_MULTI_REF_LINE was missing.
3d839d2b
History
NextSoftware build howto:

The software uses cmake to create the needed build files. 
Download cmake: http://www.cmake.org/ and install it.

Usage:

Open a command prompt on your system and change into the root directory
of this project (location of README.txt).

Create a build directory in the root directory:
mkdir build 

After that use one of the following cmake commands. Feel free to change the 
commands to satisfy your needs.

Windows sample for Visual Studio 2015 64 Bit:
cd build
cmake .. -G "Visual Studio 14 2015 Win64"

Linux Release Makefile sample:
cd build
cmake .. -DCMAKE_BUILD_TYPE=Release

Linux Debug Makefile sample:
cd build
cmake .. -DCMAKE_BUILD_TYPE=Debug

MACOSX Xcode sample:
cd build
cmake .. -G "Xcode"