Skip to content

Commit

Permalink
Update README.md
Browse files Browse the repository at this point in the history
  • Loading branch information
dariusz-f authored and dkozinski committed Nov 29, 2024
1 parent 7d69e50 commit 7b21466
Showing 1 changed file with 42 additions and 42 deletions.
84 changes: 42 additions & 42 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -31,23 +31,23 @@ MPEG-5 EVC Main Profile can show 2-times better coding gain over HEVC/H.265 code

- Build Instructions for **Baseline Profile**
```
$mkdir build
$cd build
$cmake .. -DSET_PROF=BASE
$make
$sudo make install
mkdir build
cd build
cmake .. -DSET_PROF=BASE
make
sudo make install
```
- Output Location
- Executable application (xeveb_app) can be found under build/bin/.
- Library files (libxeveb.so and libxexeb.a) can be found under build/lib/.

- Build Instructions for **Main Profile**
```
$mkdir build
$cd build
$cmake ..
$make
$sudo make install
mkdir build
cd build
cmake ..
make
sudo make install
```
- Output Location
- Executable application (xeve_app) can be found under build/bin/.
Expand All @@ -64,36 +64,36 @@ MPEG-5 EVC Main Profile can show 2-times better coding gain over HEVC/H.265 code
- Build Instructions for **Baseline Profile**
- MinGW-64
```
$mkdir build
$cd build
$cmake .. -G "MinGW Makefiles" -DSET_PROF=BASE
$make
$sudo make install
mkdir build
cd build
cmake .. -G "MinGW Makefiles" -DSET_PROF=BASE
make
sudo make install
```
- Microsoft Visual Studio
```
$mkdir build
$cd build
$cmake .. -G "Visual Studio 15 2017 Win64" -DSET_PROF=BASE
$make
mkdir build
cd build
cmake .. -G "Visual Studio 15 2017 Win64" -DSET_PROF=BASE
make
```
You can change '-G' option with proper version of Visual Studio.
- Build Instructions for **Main Profile**
- MinGW-64
```
$mkdir build
$cd build
$cmake .. -G "MinGW Makefiles"
$make
$sudo make install
mkdir build
cd build
cmake .. -G "MinGW Makefiles"
make
sudo make install
```
- Microsoft Visual Studio
```
$mkdir build
$cd build
$cmake .. -G "Visual Studio 15 2017 Win64"
$make
mkdir build
cd build
cmake .. -G "Visual Studio 15 2017 Win64"
make
```
You can change '-G' option with proper version of Visual Studio.
Expand All @@ -107,23 +107,23 @@ MPEG-5 EVC Main Profile can show 2-times better coding gain over HEVC/H.265 code
- Build Instructions for **Baseline Profile**
```
$mkdir build-arm
$cd build-arm
$cmake .. -DCMAKE_C_COMPILER=aarch64-linux-gnu-gcc -DCMAKE_SYSTEM_PROCESSOR=aarch64 -DARM=TRUE -DSET_PROF=BASE
$make
$sudo make install
mkdir build-arm
cd build-arm
cmake .. -DCMAKE_C_COMPILER=aarch64-linux-gnu-gcc -DCMAKE_SYSTEM_PROCESSOR=aarch64 -DARM=TRUE -DSET_PROF=BASE
make
sudo make install
```
- Output Location
- Executable application (xeveb_app) can be found under build-arm/bin/.
- Library files (libxeveb.so and libxexeb.a) can be found under build-arm/lib/.
- Build Instructions for **Main Profile**
```
$mkdir build-arm
$cd build-arm
$cmake .. -DCMAKE_C_COMPILER=aarch64-linux-gnu-gcc -DCMAKE_SYSTEM_PROCESSOR=aarch64 -DARM=TRUE
$make
$sudo make install
mkdir build-arm
cd build-arm
cmake .. -DCMAKE_C_COMPILER=aarch64-linux-gnu-gcc -DCMAKE_SYSTEM_PROCESSOR=aarch64 -DARM=TRUE
make
sudo make install
```
- Output Location
- Executable application (xeve_app) can be found under build-arm/bin/.
Expand All @@ -138,7 +138,7 @@ MPEG-5 EVC Main Profile can show 2-times better coding gain over HEVC/H.265 code
- Follow build instruction and build the project
- Generate **DEB packages**
```
$make package
make package
```
or
```
Expand Down Expand Up @@ -196,7 +196,7 @@ MPEG-5 EVC Main Profile can show 2-times better coding gain over HEVC/H.265 code
- MinGW-64
- Go to the build directory and issue the following command
```
$make package
make package
```
- Output:
- Baseline Profile:
Expand Down Expand Up @@ -261,8 +261,8 @@ Options:
```
### Example
$xeve_app -i RaceHorses_416x240_30.yuv -w 416 -h 240 -z 30 -o xeve.evc
$xeve_app -i RaceHorses_416x240_30.y4m -o xeve.evc
xeve_app -i RaceHorses_416x240_30.yuv -w 416 -h 240 -z 30 -o xeve.evc
xeve_app -i RaceHorses_416x240_30.y4m -o xeve.evc
## Programming Guide
The following code is a pseudo code for understanding how to use the library
Expand Down

0 comments on commit 7b21466

Please sign in to comment.