* rocDecode/CTest: Added CTest for VP9 decode on bitstream reader. (#523)

[ROCm/rocdecode commit: df11e95a71]
This commit is contained in:
jeffqjiangNew
2025-03-03 10:47:40 -05:00
committed by GitHub
parent ef7c4c900c
commit 407d392c3f
2 changed files with 15 additions and 1 deletions
+1
View File
@@ -7,6 +7,7 @@ Full documentation for rocDecode is available at [https://rocm.docs.amd.com/proj
### Added
* VP9 IVF container file parsing support in bitstream reader.
* CTest for VP9 decode on bitstream reader.
### Changed
+14 -1
View File
@@ -194,7 +194,7 @@ add_test(
-i ${ROCM_PATH}/share/rocdecode/video/AMD_driving_virtual_20-H264.264
)
# 3 - videoDecodeRaw AV1
# 11 - videoDecodeRaw AV1
add_test(
NAME
video_decodeRaw-AV1
@@ -206,3 +206,16 @@ add_test(
--test-command "videodecoderaw"
-i ${ROCM_PATH}/share/rocdecode/video/AMD_driving_virtual_20-AV1.ivf
)
# 12 - videoDecodeRaw VP9
add_test(
NAME
video_decodeRaw-VP9
COMMAND
"${CMAKE_CTEST_COMMAND}"
--build-and-test "${ROCM_PATH}/share/rocdecode/samples/videoDecodeRaw"
"${CMAKE_CURRENT_BINARY_DIR}/videoDecodeRaw"
--build-generator "${CMAKE_GENERATOR}"
--test-command "videodecoderaw"
-i ${ROCM_PATH}/share/rocdecode/video/AMD_driving_virtual_20-VP9.ivf
)