Skip to content

Commit

Permalink
Vulkan Video AV1 Encode Test: Fix verbosity
Browse files Browse the repository at this point in the history
Use Vulkan-Video-Samples public repository and check
a revision where the output is less verbose.

Remove useless log about clip removal.

Components: Vulkan

VK-GL-CTS issue: 5504

Affected tests:
 dEQP-VK.video.encode.av1.*

Change-Id: I836ac90bcbb7337dfa606110bd37f109a04f1246
  • Loading branch information
dabrain34 authored and lordalcol committed Dec 20, 2024
1 parent eceed9e commit aae816a
Show file tree
Hide file tree
Showing 5 changed files with 7 additions and 14 deletions.
2 changes: 1 addition & 1 deletion CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -151,7 +151,7 @@ if (DE_OS_IS_WIN32 OR DE_OS_IS_UNIX)
# Some of the parsing / codec code is used from here.
add_subdirectory(external/nvidia-video-samples EXCLUDE_FROM_ALL)
# Video encoder library
add_subdirectory(external/vk-video-samples EXCLUDE_FROM_ALL)
add_subdirectory(external/vulkan-video-samples EXCLUDE_FROM_ALL)
# YUV Video generator library
add_subdirectory(external/video_generator EXCLUDE_FROM_ALL)
endif()
Expand Down
2 changes: 1 addition & 1 deletion external/.gitignore
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
spirv-headers/src
vulkan-docs/src
video_generator/src
vk-video-samples/src
vulkan-video-samples/src
8 changes: 4 additions & 4 deletions external/fetch_sources.py
Original file line number Diff line number Diff line change
Expand Up @@ -363,10 +363,10 @@ def postExtractLibpng (path):
# NOTE: Temporary vk_video_samples repo and branch where AV1
# encoder library is being developed by NVidia.
GitRepo(
"https://github.com/nvpro-samples/vk_video_samples.git",
"[email protected]:nvpro-samples/vk_video_samples.git",
"d78acbefe82183d00634a95705885a7cbabdf20b",
"vk-video-samples"),
"https://github.com/KhronosGroup/Vulkan-Video-Samples.git",
"[email protected]:KhronosGroup/Vulkan-Video-Samples.git",
"70dfd5a6007680ddb8970d7e71bf7af9ee173f3c",
"vulkan-video-samples"),
# NOTE: Temporary video generator repo .
GitRepo(
"https://github.com/Igalia/video_generator.git",
Expand Down
File renamed without changes.
Original file line number Diff line number Diff line change
Expand Up @@ -855,14 +855,7 @@ void removeClip(const std::string &clipName)
{
try
{
if (std::filesystem::remove(clipName))
{
std::cout << "File " << clipName << " deleted successfully." << std::endl;
}
else
{
std::cout << "File " << clipName << " does not exist." << std::endl;
}
std::filesystem::remove(clipName);
}
catch (const std::filesystem::filesystem_error &e)
{
Expand Down

0 comments on commit aae816a

Please sign in to comment.