Update the make test and Readme by removing the H.264 (#63)

[ROCm/rocdecode commit: c44a000c73]
This commit is contained in:
Aryan Salmanpour
2023-11-15 10:57:55 -05:00
committed by GitHub
parent 463ed05a63
commit 817b9f44af
2 changed files with 3 additions and 9 deletions
-1
View File
@@ -2,7 +2,6 @@
rocDecode is a high performance video decode SDK for AMD hardware. rocDecode API lets developers access the video decoding features available on the GPU.
## Supported Codecs
* H.264 - 8 bit
* H.265 (HEVC) - 8 bit, and 10 bit
## Prerequisites:
+3 -8
View File
@@ -26,17 +26,12 @@ set(ROC_VIDEO_DEC_DIR ${CMAKE_CURRENT_SOURCE_DIR}/../utils/rocvideodecode)
# videoDecode
add_test(
NAME
video_decode-H264
video_decode-H265
COMMAND
"${CMAKE_CTEST_COMMAND}"
--build-and-test "${CMAKE_CURRENT_SOURCE_DIR}/videoDecode"
"${CMAKE_CURRENT_BINARY_DIR}/videoDecode"
--build-generator "${CMAKE_GENERATOR}"
--test-command "videodecode"
-i ${CMAKE_SOURCE_DIR}/data/videos/AMD_driving_virtual_20-H264.mp4
)
add_test(NAME video_decode-H265
COMMAND videodecode
-i ${CMAKE_SOURCE_DIR}/data/videos/AMD_driving_virtual_20-H265.mp4
WORKING_DIRECTORY ${CMAKE_CURRENT_BINARY_DIR}/videoDecode)
-i ${CMAKE_SOURCE_DIR}/data/videos/AMD_driving_virtual_20-H265.mp4 -z
)