From 7ea07e547773c72f60e78c2940795909bc28b441 Mon Sep 17 00:00:00 2001 From: Kiriti Gowda Date: Fri, 3 May 2024 13:27:58 -0700 Subject: [PATCH] Readme - Updates (#338) * Readme - Updates * Docs - updates [ROCm/rocdecode commit: 47165ef6bbe5402f1bc933e27a670cf433b7558e] --- projects/rocdecode/README.md | 9 ++++++--- projects/rocdecode/docs/install/install.rst | 21 +++++++++++++-------- 2 files changed, 19 insertions(+), 11 deletions(-) diff --git a/projects/rocdecode/README.md b/projects/rocdecode/README.md index 2ccc56d4ee..f4bd660024 100644 --- a/projects/rocdecode/README.md +++ b/projects/rocdecode/README.md @@ -55,14 +55,17 @@ access the video decoding features available on your GPU. ``` > [!IMPORTANT] -> * If using Ubuntu 22.04, you must install `libstdc++-12-dev` +> * On `Ubuntu 22.04` - Additional package required: `libstdc++-12-dev` > > ```shell > sudo apt install libstdc++-12-dev > ``` > -> * Additional RPM Packages required for `RHEL`/`SLES` - `libdrm-amdgpu mesa-amdgpu-dri-drivers` - +> * On `RHEL`/`SLES` - Additional packages required: `libdrm-amdgpu` and `mesa-amdgpu-dri-drivers` +> +> ```shell +> sudo yum install libdrm-amdgpu mesa-amdgpu-dri-drivers +> ``` >[!NOTE] > * All package installs are shown with the `apt` package manager. Use the appropriate package manager for your operating system. diff --git a/projects/rocdecode/docs/install/install.rst b/projects/rocdecode/docs/install/install.rst index 14d4d0b38e..7086ffef7c 100644 --- a/projects/rocdecode/docs/install/install.rst +++ b/projects/rocdecode/docs/install/install.rst @@ -54,7 +54,7 @@ Prerequisites * Run: ``--usecase=rocm`` * To install rocDecode with minimum requirements, follow the :doc:`quick-start instructions <./quick-start>` -* Video Acceleration API Version `1.5.0`+ - `Libva` is an implementation for VA-API +* Video Acceleration API Version ``1.5.0`` or later - ``Libva`` is an implementation for VA-API .. code:: shell @@ -84,18 +84,23 @@ Prerequisites sudo apt install ffmpeg libavcodec-dev libavformat-dev libavutil-dev -* If using Ubuntu 22.04, you must install ``libstdc++-12-dev`` - - .. code:: shell - - sudo apt install libstdc++-12-dev - .. note:: * All package installs are shown with the ``apt`` package manager. Use the appropriate package manager for your operating system. - * Additional RPM Packages required for `RHEL`/`SLES` - `libdrm-amdgpu mesa-amdgpu-dri-drivers` + * On ``Ubuntu 22.04`` - Additional package required: ``libstdc++-12-dev`` + + .. code:: shell + + sudo apt install libstdc++-12-dev + + * On ``RHEL`` / ``SLES`` - Additional packages required: ``libdrm-amdgpu`` and ``mesa-amdgpu-dri-drivers`` + + .. code:: shell + + sudo apt install libdrm-amdgpu mesa-amdgpu-dri-drivers + Prerequisites setup script ----------------------------------------------------------------------------------------------------------