OSDN Git Service

test: add YUVImage class
[android-x86/hardware-intel-common-vaapi.git] / test / i965_avce_config_test.cpp
1 /*
2  * Copyright (C) 2016 Intel Corporation. All Rights Reserved.
3  *
4  * Permission is hereby granted, free of charge, to any person obtaining a
5  * copy of this software and associated documentation files (the
6  * "Software"), to deal in the Software without restriction, including
7  * without limitation the rights to use, copy, modify, merge, publish,
8  * distribute, sub license, and/or sell copies of the Software, and to
9  * permit persons to whom the Software is furnished to do so, subject to
10  * the following conditions:
11  *
12  * The above copyright notice and this permission notice (including the
13  * next paragraph) shall be included in all copies or substantial portions
14  * of the Software.
15  *
16  * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS
17  * OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
18  * MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NON-INFRINGEMENT.
19  * IN NO EVENT SHALL PRECISION INSIGHT AND/OR ITS SUPPLIERS BE LIABLE FOR
20  * ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT,
21  * TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE
22  * SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
23  */
24
25 #include "i965_config_test.h"
26
27 namespace AVC {
28 namespace Encode {
29
30 VAStatus ProfileNotSupported()
31 {
32     return VA_STATUS_ERROR_UNSUPPORTED_PROFILE;
33 }
34
35 VAStatus EntrypointNotSupported()
36 {
37     return VA_STATUS_ERROR_UNSUPPORTED_ENTRYPOINT;
38 }
39
40 VAStatus HasEncodeSupport()
41 {
42     I965TestEnvironment *env(I965TestEnvironment::instance());
43     EXPECT_PTR(env);
44
45     struct i965_driver_data *i965(*env);
46     EXPECT_PTR(i965);
47
48     return HAS_H264_ENCODING(i965) ? VA_STATUS_SUCCESS :
49         EntrypointNotSupported();
50 }
51
52 VAStatus HasLPEncodeSupport()
53 {
54     I965TestEnvironment *env(I965TestEnvironment::instance());
55     EXPECT_PTR(env);
56
57     struct i965_driver_data *i965(*env);
58     EXPECT_PTR(i965);
59
60     if (IS_SKL(i965->intel.device_info))
61         return VA_STATUS_SUCCESS;
62
63     return HAS_LP_H264_ENCODING(i965) ? VA_STATUS_SUCCESS :
64         EntrypointNotSupported();
65 }
66
67 VAStatus HasMVCEncodeSupport()
68 {
69     I965TestEnvironment *env(I965TestEnvironment::instance());
70     EXPECT_PTR(env);
71
72     struct i965_driver_data *i965(*env);
73     EXPECT_PTR(i965);
74
75     return HAS_H264_MVC_ENCODING(i965) ? VA_STATUS_SUCCESS :
76         EntrypointNotSupported();
77 }
78
79 static const std::vector<ConfigTestInput> inputs = {
80     {VAProfileH264Baseline, VAEntrypointEncSlice, &ProfileNotSupported},
81     {VAProfileH264Baseline, VAEntrypointEncSliceLP, &ProfileNotSupported},
82     {VAProfileH264Baseline, VAEntrypointEncPicture, &ProfileNotSupported},
83
84     {VAProfileH264ConstrainedBaseline, VAEntrypointEncSlice, &HasEncodeSupport},
85     {VAProfileH264ConstrainedBaseline, VAEntrypointEncSliceLP, &HasLPEncodeSupport},
86     {VAProfileH264ConstrainedBaseline, VAEntrypointEncPicture, &EntrypointNotSupported},
87
88     {VAProfileH264Main, VAEntrypointEncSlice, &HasEncodeSupport},
89     {VAProfileH264Main, VAEntrypointEncSliceLP, &HasLPEncodeSupport},
90     {VAProfileH264Main, VAEntrypointEncPicture, &EntrypointNotSupported},
91
92     {VAProfileH264High, VAEntrypointEncSlice, &HasEncodeSupport},
93     {VAProfileH264High, VAEntrypointEncSliceLP, &HasLPEncodeSupport},
94     {VAProfileH264High, VAEntrypointEncPicture, &EntrypointNotSupported},
95
96     {VAProfileH264MultiviewHigh, VAEntrypointEncSlice, &HasMVCEncodeSupport},
97     {VAProfileH264MultiviewHigh, VAEntrypointEncSliceLP, &EntrypointNotSupported},
98     {VAProfileH264MultiviewHigh, VAEntrypointEncPicture, &EntrypointNotSupported},
99
100     {VAProfileH264StereoHigh, VAEntrypointEncSlice, &HasMVCEncodeSupport},
101     {VAProfileH264StereoHigh, VAEntrypointEncSliceLP, &EntrypointNotSupported},
102     {VAProfileH264StereoHigh, VAEntrypointEncPicture, &EntrypointNotSupported},
103 };
104
105 INSTANTIATE_TEST_CASE_P(
106     AVCEncode, I965ConfigTest, ::testing::ValuesIn(inputs));
107
108 } // namespace Encode
109 } // namespace AVC