Skip to content
Snippets Groups Projects
Forked from jvet / VVCSoftware_VTM
8047 commits behind the upstream repository.
user avatar
Frank Bossen authored
This is JVET L0054 MMVD code.
MACRO is JVET_L0054_MMVD.

See merge request jvet/VVCSoftware_VTM!26

Squashed commit of the following:

commit d9b44c2820495aee7c77604f511116711a18b880
Author: seungsoo <ss00.jeong@samsung.com>
Date:   Fri Oct 26 08:28:35 2018 +0900

    code update ( reflection )

commit 1fd1b4341134f355651d950ba0024c2b370cdfb5
Author: seungsoo <ss00.jeong@samsung.com>
Date:   Thu Oct 25 10:59:22 2018 +0900

    code update ( reflection of commented things )

commit 3befe26e3e9c23c51bad6e874d868403f665f452
Author: seungsoo <ss00.jeong@samsung.com>
Date:   Wed Oct 24 13:18:27 2018 +0900

    JVET_L0054_MMVD is uploaded.
0bf36e45
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"