summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--test/i965_avcd_config_test.cpp2
-rw-r--r--test/i965_avce_config_test.cpp5
-rw-r--r--test/i965_avce_test_common.cpp3
-rw-r--r--test/i965_streamable.h2
4 files changed, 0 insertions, 12 deletions
diff --git a/test/i965_avcd_config_test.cpp b/test/i965_avcd_config_test.cpp
index 8bc5e3cc..ad10ffbe 100644
--- a/test/i965_avcd_config_test.cpp
+++ b/test/i965_avcd_config_test.cpp
@@ -96,8 +96,6 @@ VAStatus HasMVCDecodeSupport()
}
static const std::vector<ConfigTestInput> inputs = {
- { VAProfileH264Baseline, VAEntrypointVLD, &ProfileNotSupported },
-
{ VAProfileH264ConstrainedBaseline, VAEntrypointVLD, &HasDecodeSupport },
{ VAProfileH264Main, VAEntrypointVLD, &HasDecodeSupport },
{ VAProfileH264High, VAEntrypointVLD, &HasDecodeSupport },
diff --git a/test/i965_avce_config_test.cpp b/test/i965_avce_config_test.cpp
index e241bb82..c5f3cfb2 100644
--- a/test/i965_avce_config_test.cpp
+++ b/test/i965_avce_config_test.cpp
@@ -165,11 +165,6 @@ VAStatus HasMVCEncodeSupport()
}
static const std::vector<ConfigTestInput> inputs = {
- {VAProfileH264Baseline, VAEntrypointEncSlice, &ProfileNotSupported},
- {VAProfileH264Baseline, VAEntrypointEncSliceLP, &ProfileNotSupported},
- {VAProfileH264Baseline, VAEntrypointEncPicture, &ProfileNotSupported},
- {VAProfileH264Baseline, VAEntrypointFEI, &ProfileNotSupported},
-
{VAProfileH264ConstrainedBaseline, VAEntrypointEncSlice, &HasEncodeSupport},
{VAProfileH264ConstrainedBaseline, VAEntrypointEncSliceLP, &HasLPEncodeSupport},
{VAProfileH264ConstrainedBaseline, VAEntrypointEncPicture, &H264NotSupported},
diff --git a/test/i965_avce_test_common.cpp b/test/i965_avce_test_common.cpp
index 1948c871..c35adba3 100644
--- a/test/i965_avce_test_common.cpp
+++ b/test/i965_avce_test_common.cpp
@@ -42,9 +42,6 @@ VAStatus CheckSupported(VAProfile profile, VAEntrypoint entrypoint)
EXPECT_PTR(i965);
switch(profile) {
- case VAProfileH264Baseline:
- return VA_STATUS_ERROR_UNSUPPORTED_PROFILE;
-
case VAProfileH264ConstrainedBaseline:
case VAProfileH264Main:
case VAProfileH264High:
diff --git a/test/i965_streamable.h b/test/i965_streamable.h
index 71fb88fa..b905cd1b 100644
--- a/test/i965_streamable.h
+++ b/test/i965_streamable.h
@@ -432,8 +432,6 @@ operator<<(std::ostream& os, const VAProfile& profile)
return os << "VAProfileVP9Profile2";
case VAProfileVP9Profile3:
return os << "VAProfileVP9Profile3";
- case VAProfileH264Baseline:
- return os << "VAProfileH264Baseline";
case VAProfileH264ConstrainedBaseline:
return os << "VAProfileH264ConstrainedBaseline";
case VAProfileH264High: