Files
rocm-systems/projects/rocdecode/samples/videoDecodeMultiFiles/README.md
T
Lakshmi Kumar 55193f5165 Samples - adds surface memory option to user (#104)
* adding surface mem type as user arg

* adding mem type user arg for all apps

* readme update

* readme updates on all apps

[ROCm/rocdecode commit: 449572f9bf]
2023-11-30 08:31:37 -05:00

1.3 KiB

Video Decode Multi Files Sample

This sample illustrates the FFMPEG demuxer to get the individual frames which are then decoded on AMD hardware using rocDecode library.

This sample takes multiple files as a list and decodes each of them one after the other.

Prerequisites:

Build

mkdir build
cd build
cmake ../
make -j

Run

  • Example input file list - example.txt
infile input1.[mp4/mov...] [required]
outfile output1.yuv [optional]
z 0 [optional]
sei 0 [optional]
crop l,t,r,b [optional]
m  0 [optional] [0 : OUT_SURFACE_MEM_DEV_INTERNAL/ 1 : OUT_SURFACE_MEM_DEV_COPIED/ 2 : OUT_SURFACE_MEM_HOST_COPIED]
infile input2.[mp4/mov...] [optional]
outfile output2.yuv [optional]
...
...
./videodecodemultifiles -i <input file list[required - example.txt]>
              -d <GPU device ID - 0:device 0 / 1:device 1/ ... [optional - default:0]>