summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorXiang, Haihao <haihao.xiang@intel.com>2017-08-31 11:07:24 +0800
committerXiang, Haihao <haihao.xiang@intel.com>2017-09-27 12:56:58 +0800
commit90bf343d8e96a30d031a5fffa3019842607a0361 (patch)
treece49c27d609cd3b84d7217f696970d727c651c16
parent212ba2ac33ff75239a5b94f423710de6d02451f3 (diff)
downloadlibva-intel-driver-90bf343d8e96a30d031a5fffa3019842607a0361.tar.gz
Remove VAProfileH264Baseline from gtest
VAProfileH264Baseline was marked as deprecated Signed-off-by: Xiang, Haihao <haihao.xiang@intel.com>
-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: