OSDN Git Service

add the support of enum VAProfileVP9Profile1~3 for vainfo
[android-x86/hardware-intel-common-libva.git] / test / vainfo / vainfo.c
1 /*
2  * Copyright (c) 2007 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 "sysdeps.h"
26 #include <stdarg.h>
27 #include <stdio.h>
28 #include <string.h>
29 #include <stdlib.h>
30 #include "va_display.h"
31 #include "va/sysdeps.h"
32
33 #define CHECK_VASTATUS(va_status,func, ret)                             \
34 if (va_status != VA_STATUS_SUCCESS) {                                   \
35     fprintf(stderr,"%s failed with error code %d (%s),exit\n",func, va_status, vaErrorStr(va_status)); \
36     ret_val = ret;                                                      \
37     goto error;                                                         \
38 }
39
40 static char * profile_string(VAProfile profile)
41 {
42     switch (profile) {
43             case VAProfileNone: return "VAProfileNone";
44             case VAProfileMPEG2Simple: return "VAProfileMPEG2Simple";
45             case VAProfileMPEG2Main: return "VAProfileMPEG2Main";
46             case VAProfileMPEG4Simple: return "VAProfileMPEG4Simple";
47             case VAProfileMPEG4AdvancedSimple: return "VAProfileMPEG4AdvancedSimple";
48             case VAProfileMPEG4Main: return "VAProfileMPEG4Main";
49             case VAProfileH264Baseline: return "VAProfileH264Baseline";
50             case VAProfileH264Main: return "VAProfileH264Main";
51             case VAProfileH264High: return "VAProfileH264High";
52             case VAProfileVC1Simple: return "VAProfileVC1Simple";
53             case VAProfileVC1Main: return "VAProfileVC1Main";
54             case VAProfileVC1Advanced: return "VAProfileVC1Advanced";
55             case VAProfileH263Baseline: return "VAProfileH263Baseline";
56             case VAProfileH264ConstrainedBaseline: return "VAProfileH264ConstrainedBaseline";
57             case VAProfileJPEGBaseline: return "VAProfileJPEGBaseline";
58             case VAProfileVP8Version0_3: return "VAProfileVP8Version0_3";
59             case VAProfileH264MultiviewHigh: return "VAProfileH264MultiviewHigh";
60             case VAProfileH264StereoHigh: return "VAProfileH264StereoHigh";
61             case VAProfileHEVCMain: return "VAProfileHEVCMain";
62             case VAProfileHEVCMain10: return "VAProfileHEVCMain10";
63             case VAProfileVP9Profile0: return "VAProfileVP9Profile0";
64             case VAProfileVP9Profile1: return "VAProfileVP9Profile1";
65             case VAProfileVP9Profile2: return "VAProfileVP9Profile2";
66             case VAProfileVP9Profile3: return "VAProfileVP9Profile3";
67
68             default:
69                 break;
70     }
71     return "<unknown profile>";
72 }
73
74
75 static char * entrypoint_string(VAEntrypoint entrypoint)
76 {
77     switch (entrypoint) {
78             case VAEntrypointVLD:return "VAEntrypointVLD";
79             case VAEntrypointIZZ:return "VAEntrypointIZZ";
80             case VAEntrypointIDCT:return "VAEntrypointIDCT";
81             case VAEntrypointMoComp:return "VAEntrypointMoComp";
82             case VAEntrypointDeblocking:return "VAEntrypointDeblocking";
83             case VAEntrypointEncSlice:return "VAEntrypointEncSlice";
84             case VAEntrypointEncPicture:return "VAEntrypointEncPicture";
85             case VAEntrypointVideoProc:return "VAEntrypointVideoProc";
86             default:
87                 break;
88     }
89     return "<unknown entrypoint>";
90 }
91
92 int main(int argc, const char* argv[])
93 {
94   VADisplay va_dpy;
95   VAStatus va_status;
96   int major_version, minor_version;
97   const char *driver;
98   const char *name = strrchr(argv[0], '/'); 
99   VAProfile profile, *profile_list = NULL;
100   int num_profiles, max_num_profiles, i;
101   VAEntrypoint entrypoint, entrypoints[10];
102   int num_entrypoint;
103   int ret_val = 0;
104   
105   if (name)
106       name++;
107   else
108       name = argv[0];
109
110   va_init_display_args(&argc, (char **)argv);
111
112   va_dpy = va_open_display();
113   if (NULL == va_dpy)
114   {
115       fprintf(stderr, "%s: vaGetDisplay() failed\n", name);
116       return 2;
117   }
118   
119   va_status = vaInitialize(va_dpy, &major_version, &minor_version);
120   CHECK_VASTATUS(va_status, "vaInitialize", 3);
121   
122   printf("%s: VA-API version: %d.%d (libva %s)\n",
123          name, major_version, minor_version, LIBVA_VERSION_S);
124
125   driver = vaQueryVendorString(va_dpy);
126   printf("%s: Driver version: %s\n", name, driver ? driver : "<unknown>");
127
128   printf("%s: Supported profile and entrypoints\n", name);
129   max_num_profiles = vaMaxNumProfiles(va_dpy);
130   profile_list = malloc(max_num_profiles * sizeof(VAProfile));
131
132   if (!profile_list) {
133       printf("Failed to allocate memory for profile list\n");
134       ret_val = 5;
135       goto error;
136   }
137
138   va_status = vaQueryConfigProfiles(va_dpy, profile_list, &num_profiles);
139   CHECK_VASTATUS(va_status, "vaQueryConfigProfiles", 6);
140
141   for (i = 0; i < num_profiles; i++) {
142       char *profile_str;
143
144       profile = profile_list[i];
145       va_status = vaQueryConfigEntrypoints(va_dpy, profile, entrypoints, 
146                                            &num_entrypoint);
147       if (va_status == VA_STATUS_ERROR_UNSUPPORTED_PROFILE)
148         continue;
149
150       CHECK_VASTATUS(va_status, "vaQueryConfigEntrypoints", 4);
151
152       profile_str = profile_string(profile);
153       for (entrypoint = 0; entrypoint < num_entrypoint; entrypoint++)
154           printf("      %-32s:  %s\n", profile_str, entrypoint_string(entrypoints[entrypoint]));
155   }
156   
157 error:
158   free(profile_list);
159   vaTerminate(va_dpy);
160   va_close_display(va_dpy);
161   
162   return ret_val;
163 }