Fix compilation issues on distro without std::filesystem (#348)

This commit is contained in:
Aryan Salmanpour
2024-05-08 14:45:32 -04:00
committed by GitHub
parent a1b20be3fc
commit bdb08ab644
2 changed files with 15 additions and 0 deletions
@@ -435,7 +435,11 @@ void VaapiVideoDecoder::GetVisibleDevices(std::vector<int>& visible_devices_veto
void VaapiVideoDecoder::GetCurrentComputePartition(std::vector<ComputePartition> &current_compute_partitions) {
std::string search_path = "/sys/devices/";
std::string partition_file = "current_compute_partition";
#if __cplusplus >= 201703L && __has_include(<filesystem>)
for (const auto& entry : std::filesystem::recursive_directory_iterator(search_path)) {
#else
for (const auto& entry : std::experimental::filesystem::recursive_directory_iterator(search_path)) {
#endif
if (entry.path().filename() == partition_file) {
std::ifstream file(entry.path());
if (file.is_open()) {