Skip to content
This repository was archived by the owner on Jan 31, 2025. It is now read-only.

GCC 10 compiler error fixes #509

Merged
merged 2 commits into from
May 14, 2020
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion src/gen9_hevc_enc_kernels_binary.h
Original file line number Diff line number Diff line change
Expand Up @@ -31,6 +31,6 @@

#define GEN9_HEVC_ENC_KERNEL_SIZE 149296

const unsigned int gen9_hevc_encoder_kernels[GEN9_HEVC_ENC_KERNEL_SIZE];
extern const unsigned int gen9_hevc_encoder_kernels[GEN9_HEVC_ENC_KERNEL_SIZE];

#endif
2 changes: 1 addition & 1 deletion test/test.h
Original file line number Diff line number Diff line change
Expand Up @@ -147,7 +147,7 @@ class VaapiStatus
status = "VA_STATUS_ERROR_HW_BUSY"; break;
case VA_STATUS_ERROR_UNSUPPORTED_MEMORY_TYPE:
status = "VA_STATUS_ERROR_UNSUPPORTED_MEMORY_TYPE"; break;
case VA_STATUS_ERROR_UNKNOWN:
case VAStatus(VA_STATUS_ERROR_UNKNOWN):
status = "VA_STATUS_ERROR_UNKNOWN"; break;
default:
status = "Unknown VAStatus";
Expand Down