2024-01-12 12:35:53 -08:00
|
|
|
[](https://opensource.org/licenses/MIT)
|
|
|
|
|
|
2024-01-31 17:51:10 -08:00
|
|
|
<p align="center"><img width="70%" src="docs/data/AMD_rocDecode_Logo.png" /></p>
|
2023-11-21 11:08:36 -07:00
|
|
|
|
2024-02-27 14:42:03 -07:00
|
|
|
rocDecode is a high-performance video decode SDK for AMD GPUs. Using the rocDecode API, you can
|
|
|
|
|
access the video decoding features available on your GPU.
|
|
|
|
|
|
|
|
|
|
## Tested configurations
|
|
|
|
|
|
|
|
|
|
* Linux
|
|
|
|
|
* Ubuntu - `20.04` / `22.04`
|
|
|
|
|
* RHEL - `8` / `9`
|
|
|
|
|
* SLES - `15-SP4`
|
|
|
|
|
* ROCm:
|
|
|
|
|
* rocm-core - `6.1.0.60100-28`
|
|
|
|
|
* amdgpu-core - `1:6.1.60100-1731559`
|
|
|
|
|
* FFmpeg - `4.2.7` / `4.4.2-0`
|
|
|
|
|
* rocDecode Setup Script - `V1.4`
|
2023-07-26 17:47:47 -04:00
|
|
|
|
2024-01-12 12:35:53 -08:00
|
|
|
## Supported codecs
|
2023-11-21 11:08:36 -07:00
|
|
|
|
2023-11-06 12:10:12 -05:00
|
|
|
* H.265 (HEVC) - 8 bit, and 10 bit
|
2023-10-12 14:08:12 -07:00
|
|
|
|
2023-11-21 11:08:36 -07:00
|
|
|
## Prerequisites
|
2023-07-26 17:47:47 -04:00
|
|
|
|
|
|
|
|
* Linux distribution
|
2024-02-27 14:42:03 -07:00
|
|
|
* Ubuntu - `20.04` / `22.04`
|
|
|
|
|
* RHEL - `8` / `9`
|
|
|
|
|
* SLES - `15-SP4`
|
2023-11-21 11:08:36 -07:00
|
|
|
|
2024-02-27 14:42:03 -07:00
|
|
|
* [ROCm-supported hardware](https://rocm.docs.amd.com/projects/install-on-linux/en/latest/reference/system-requirements.html) (`gfx908` or higher required)
|
2023-07-26 17:47:47 -04:00
|
|
|
|
2024-02-27 14:42:03 -07:00
|
|
|
* Install ROCm `6.1.0` or later with
|
|
|
|
|
[amdgpu-install](https://rocm.docs.amd.com/projects/install-on-linux/en/latest/how-to/amdgpu-install.html)
|
|
|
|
|
* Run: `--usecase=multimediasdk,rocm --no-32`
|
|
|
|
|
* To install rocDecode with minimum requirements, follow the
|
|
|
|
|
[quick-start](./docs/install/quick-start.rst) instructions
|
2023-11-29 20:59:06 -05:00
|
|
|
|
2024-01-09 10:43:34 -08:00
|
|
|
* CMake `3.5` or later
|
2024-01-24 11:11:14 -07:00
|
|
|
|
2024-02-27 14:42:03 -07:00
|
|
|
```shell
|
|
|
|
|
sudo apt install cmake
|
|
|
|
|
```
|
2023-11-29 20:59:06 -05:00
|
|
|
|
2024-01-12 12:35:53 -08:00
|
|
|
* [pkg-config](https://en.wikipedia.org/wiki/Pkg-config)
|
2024-01-24 11:11:14 -07:00
|
|
|
|
2024-02-27 14:42:03 -07:00
|
|
|
```shell
|
|
|
|
|
sudo apt install pkg-config
|
|
|
|
|
```
|
2024-01-12 12:35:53 -08:00
|
|
|
|
2024-02-27 14:42:03 -07:00
|
|
|
* [FFmpeg](https://ffmpeg.org/about.html) runtime and headers - for tests and samples
|
2024-01-24 11:11:14 -07:00
|
|
|
|
2024-02-27 14:42:03 -07:00
|
|
|
```shell
|
|
|
|
|
sudo apt install ffmpeg libavcodec-dev libavformat-dev libavutil-dev
|
|
|
|
|
```
|
2024-01-12 12:35:53 -08:00
|
|
|
|
2024-02-27 14:42:03 -07:00
|
|
|
* If using Ubuntu 22.04, you must install `libstdc++-12-dev`
|
2024-01-24 11:11:14 -07:00
|
|
|
|
2024-02-27 14:42:03 -07:00
|
|
|
```shell
|
|
|
|
|
sudo apt install libstdc++-12-dev
|
|
|
|
|
```
|
2024-01-24 11:11:14 -07:00
|
|
|
|
2024-02-27 14:42:03 -07:00
|
|
|
>[!NOTE]
|
|
|
|
|
> All package installs are shown with the `apt` package manager. Use the appropriate package
|
|
|
|
|
> manager for your operating system.
|
2024-01-24 11:11:14 -07:00
|
|
|
|
2024-02-27 14:42:03 -07:00
|
|
|
### Prerequisites setup script
|
2023-12-13 06:49:52 -08:00
|
|
|
|
2024-02-27 14:42:03 -07:00
|
|
|
For your convenience, we provide the setup script,
|
|
|
|
|
[rocDecode-setup.py](https://github.com/ROCm/rocDecode/blob/develop/rocDecode-setup.py),
|
|
|
|
|
which installs all required dependencies. Run this script only once.
|
2024-01-24 11:11:14 -07:00
|
|
|
|
2023-12-13 06:49:52 -08:00
|
|
|
```shell
|
|
|
|
|
python rocDecode-setup.py --rocm_path [ ROCm Installation Path - optional (default:/opt/rocm)]
|
|
|
|
|
--developer [ Setup Developer Options - optional (default:ON) [options:ON/OFF]]
|
|
|
|
|
```
|
2024-01-24 11:11:14 -07:00
|
|
|
|
2024-02-27 14:42:03 -07:00
|
|
|
## Installation instructions
|
2023-07-26 17:47:47 -04:00
|
|
|
|
2024-02-27 14:42:03 -07:00
|
|
|
To install rocDecode, you can use [Package install](#package-install) or [Source install](#source-install).
|
2023-11-21 11:08:36 -07:00
|
|
|
|
2024-01-09 10:43:34 -08:00
|
|
|
### Package install
|
2024-01-12 12:35:53 -08:00
|
|
|
|
2024-02-27 14:42:03 -07:00
|
|
|
To install rocDecode runtime, development, and test packages, run the line of code for your operating
|
|
|
|
|
system.
|
2024-01-24 11:11:14 -07:00
|
|
|
|
2024-02-27 14:42:03 -07:00
|
|
|
* Ubuntu
|
2024-01-12 13:18:28 -08:00
|
|
|
|
2024-02-27 14:42:03 -07:00
|
|
|
```shell
|
|
|
|
|
sudo apt install rocdecode rocdecode-dev rocdecode-test
|
|
|
|
|
```
|
2023-10-12 14:08:12 -07:00
|
|
|
|
2024-02-27 14:42:03 -07:00
|
|
|
* RHEL
|
2024-01-24 11:11:14 -07:00
|
|
|
|
2024-02-27 14:42:03 -07:00
|
|
|
```shell
|
|
|
|
|
sudo yum install rocdecode rocdecode-devel rocdecode-test
|
|
|
|
|
```
|
2024-01-24 11:11:14 -07:00
|
|
|
|
2024-02-27 14:42:03 -07:00
|
|
|
* SLES
|
2024-01-24 11:11:14 -07:00
|
|
|
|
2024-02-27 14:42:03 -07:00
|
|
|
```shell
|
|
|
|
|
sudo zypper install rocdecode rocdecode-devel rocdecode-test
|
|
|
|
|
```
|
2024-01-24 11:11:14 -07:00
|
|
|
|
2024-02-27 14:42:03 -07:00
|
|
|
>[!NOTE]
|
|
|
|
|
> Package install auto installs all dependencies.
|
2024-01-24 11:11:14 -07:00
|
|
|
|
2024-02-27 14:42:03 -07:00
|
|
|
* Runtime package - `rocdecode` only provides the rocdecode library `librocdecode.so`
|
|
|
|
|
* Development package - `rocdecode-dev`/`rocdecode-devel` provides the library, header files, and samples
|
|
|
|
|
* Test package - `rocdecode-test` provides CTest to verify installation
|
2023-07-26 17:47:47 -04:00
|
|
|
|
2024-02-27 14:42:03 -07:00
|
|
|
### Source install
|
2024-02-27 11:52:50 -08:00
|
|
|
|
2024-02-27 14:42:03 -07:00
|
|
|
To build rocDecode from source, run:
|
2024-01-09 10:43:34 -08:00
|
|
|
|
|
|
|
|
```shell
|
|
|
|
|
git clone https://github.com/ROCm/rocDecode.git
|
|
|
|
|
cd rocDecode
|
|
|
|
|
mkdir build && cd build
|
|
|
|
|
cmake ../
|
|
|
|
|
make -j8
|
|
|
|
|
sudo make install
|
|
|
|
|
```
|
|
|
|
|
|
2024-02-27 14:42:03 -07:00
|
|
|
Run tests (this requires FFmpeg dev install):
|
2023-11-21 11:08:36 -07:00
|
|
|
|
|
|
|
|
```shell
|
2023-10-12 14:08:12 -07:00
|
|
|
make test
|
|
|
|
|
```
|
2024-01-24 11:11:14 -07:00
|
|
|
|
2024-02-27 14:42:03 -07:00
|
|
|
To run tests with verbose option, use `make test ARGS="-VV"`.
|
|
|
|
|
|
|
|
|
|
Make package:
|
2023-10-12 14:08:12 -07:00
|
|
|
|
2023-11-21 11:08:36 -07:00
|
|
|
```shell
|
2024-01-09 10:43:34 -08:00
|
|
|
sudo make package
|
2023-10-12 14:08:12 -07:00
|
|
|
```
|
|
|
|
|
|
2024-01-12 12:35:53 -08:00
|
|
|
## Verify installation
|
2023-11-06 08:51:47 -08:00
|
|
|
|
2024-02-27 14:42:03 -07:00
|
|
|
The installer copies:
|
2023-11-06 08:51:47 -08:00
|
|
|
|
2023-11-23 05:57:45 -08:00
|
|
|
* Libraries into `/opt/rocm/lib`
|
|
|
|
|
* Header files into `/opt/rocm/include/rocdecode`
|
|
|
|
|
* Samples folder into `/opt/rocm/share/rocdecode`
|
|
|
|
|
* Documents folder into `/opt/rocm/share/doc/rocdecode`
|
2023-11-06 08:51:47 -08:00
|
|
|
|
2024-02-27 14:42:03 -07:00
|
|
|
* To verify your installation using a sample application, run:
|
2023-11-06 08:51:47 -08:00
|
|
|
|
2024-02-27 14:42:03 -07:00
|
|
|
```shell
|
|
|
|
|
mkdir rocdecode-sample && cd rocdecode-sample
|
|
|
|
|
cmake /opt/rocm/share/rocdecode/samples/videoDecode/
|
|
|
|
|
make -j8
|
|
|
|
|
./videodecode -i /opt/rocm/share/rocdecode/video/AMD_driving_virtual_20-H265.mp4
|
|
|
|
|
```
|
2024-01-12 12:35:53 -08:00
|
|
|
|
2024-02-27 14:42:03 -07:00
|
|
|
* To verify your installation using the `rocdecode-test` package, run:
|
2024-01-12 12:35:53 -08:00
|
|
|
|
2024-02-27 14:42:03 -07:00
|
|
|
```shell
|
|
|
|
|
mkdir rocdecode-test && cd rocdecode-test
|
|
|
|
|
cmake /opt/rocm/share/rocdecode/test/
|
|
|
|
|
ctest -VV
|
|
|
|
|
```
|
2024-01-12 12:35:53 -08:00
|
|
|
|
2024-02-27 14:42:03 -07:00
|
|
|
This test package installs the CTest module.
|
2023-11-06 08:51:47 -08:00
|
|
|
|
2023-11-21 11:08:36 -07:00
|
|
|
## Samples
|
|
|
|
|
|
2024-02-27 14:42:03 -07:00
|
|
|
You can access samples to decode your videos in our
|
|
|
|
|
[GitHub repository](https://github.com/ROCm/rocDecode/tree/develop/samples). Refer to the
|
|
|
|
|
individual folders to build and run the samples.
|
2023-11-06 08:51:47 -08:00
|
|
|
|
2024-02-27 14:42:03 -07:00
|
|
|
[FFmpeg](https://ffmpeg.org/about.html) is required for sample applications and `make test`. To install
|
|
|
|
|
FFmpeg, refer to the instructions listed for your operating system:
|
2023-11-21 11:08:36 -07:00
|
|
|
|
2024-02-27 14:42:03 -07:00
|
|
|
* Ubuntu:
|
2024-01-24 11:11:14 -07:00
|
|
|
|
2023-11-21 11:08:36 -07:00
|
|
|
```shell
|
2023-11-29 02:38:24 +05:30
|
|
|
sudo apt install ffmpeg libavcodec-dev libavformat-dev libavutil-dev
|
2023-11-06 08:51:47 -08:00
|
|
|
```
|
2024-02-27 14:42:03 -07:00
|
|
|
|
|
|
|
|
* RHEL/SLES:
|
|
|
|
|
|
|
|
|
|
Install ffmpeg development packages manually or use `rocDecode-setup.py` script
|
2023-11-06 08:51:47 -08:00
|
|
|
|
2023-11-21 11:08:36 -07:00
|
|
|
## Docker
|
|
|
|
|
|
2024-02-27 14:42:03 -07:00
|
|
|
You can find rocDecode Docker containers in our
|
|
|
|
|
[GitHub repository](https://github.com/ROCm/rocDecode/tree/develop/docker).
|
2023-10-12 14:08:12 -07:00
|
|
|
|
|
|
|
|
## Documentation
|
|
|
|
|
|
2024-02-27 14:42:03 -07:00
|
|
|
Run the following code to build our documentation locally.
|
2024-01-24 11:11:14 -07:00
|
|
|
|
2023-11-21 11:08:36 -07:00
|
|
|
```shell
|
|
|
|
|
cd docs
|
|
|
|
|
pip3 install -r sphinx/requirements.txt
|
|
|
|
|
python3 -m sphinx -T -E -b html -d _build/doctrees -D language=en . _build/html
|
2023-10-12 14:08:12 -07:00
|
|
|
```
|
2023-11-21 11:08:36 -07:00
|
|
|
|
2024-02-27 14:42:03 -07:00
|
|
|
For more information on documentation builds, refer to the
|
|
|
|
|
[Building documentation](https://rocm.docs.amd.com/en/latest/contribute/building.html)
|
|
|
|
|
page.
|