summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--test/i965_avce_context_test.cpp10
1 files changed, 7 insertions, 3 deletions
diff --git a/test/i965_avce_context_test.cpp b/test/i965_avce_context_test.cpp
index 039c05d5..6ad2793a 100644
--- a/test/i965_avce_context_test.cpp
+++ b/test/i965_avce_context_test.cpp
@@ -94,14 +94,18 @@ TEST_P(AVCEContextTest, RateControl)
struct i965_driver_data *i965(*this);
ASSERT_PTR(i965);
- const unsigned supportedBRC = (entrypoint == VAEntrypointEncSlice) ?
- i965->codec_info->h264_brc_mode : i965->codec_info->lp_h264_brc_mode;
+
+ const std::map<VAEntrypoint, unsigned> supportedBRC = {
+ {VAEntrypointEncSlice, i965->codec_info->h264_brc_mode},
+ {VAEntrypointEncSliceLP, i965->codec_info->lp_h264_brc_mode},
+ {VAEntrypointFEI, VA_RC_CQP},
+ };
for (auto rc : rateControls) {
ConfigAttribs attribs(1, {type:VAConfigAttribRateControl, value:rc});
const VAStatus expect =
- ((rc & supportedBRC) ||
+ ((rc & supportedBRC.at(entrypoint)) ||
profile == VAProfileH264MultiviewHigh ||
profile == VAProfileH264StereoHigh) ?
VA_STATUS_SUCCESS : VA_STATUS_ERROR_INVALID_CONFIG;