OSDN Git Service

vainfo: Add option --display
[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
65             default:
66                 break;
67     }
68     return "<unknown profile>";
69 }
70
71
72 static char * entrypoint_string(VAEntrypoint entrypoint)
73 {
74     switch (entrypoint) {
75             case VAEntrypointVLD:return "VAEntrypointVLD";
76             case VAEntrypointIZZ:return "VAEntrypointIZZ";
77             case VAEntrypointIDCT:return "VAEntrypointIDCT";
78             case VAEntrypointMoComp:return "VAEntrypointMoComp";
79             case VAEntrypointDeblocking:return "VAEntrypointDeblocking";
80             case VAEntrypointEncSlice:return "VAEntrypointEncSlice";
81             case VAEntrypointEncPicture:return "VAEntrypointEncPicture";
82             case VAEntrypointVideoProc:return "VAEntrypointVideoProc";
83             default:
84                 break;
85     }
86     return "<unknown entrypoint>";
87 }
88
89 int main(int argc, const char* argv[])
90 {
91   VADisplay va_dpy;
92   VAStatus va_status;
93   int major_version, minor_version;
94   const char *driver;
95   const char *name = strrchr(argv[0], '/'); 
96   VAProfile profile, *profile_list = NULL;
97   int num_profiles, max_num_profiles, i;
98   VAEntrypoint entrypoint, entrypoints[10];
99   int num_entrypoint;
100   int ret_val = 0;
101   
102   if (name)
103       name++;
104   else
105       name = argv[0];
106
107   va_init_display_args(&argc, (char **)argv);
108
109   va_dpy = va_open_display();
110   if (NULL == va_dpy)
111   {
112       fprintf(stderr, "%s: vaGetDisplay() failed\n", name);
113       return 2;
114   }
115   
116   va_status = vaInitialize(va_dpy, &major_version, &minor_version);
117   CHECK_VASTATUS(va_status, "vaInitialize", 3);
118   
119   printf("%s: VA-API version: %d.%d (libva %s)\n",
120          name, major_version, minor_version, LIBVA_VERSION_S);
121
122   driver = vaQueryVendorString(va_dpy);
123   printf("%s: Driver version: %s\n", name, driver ? driver : "<unknown>");
124
125   printf("%s: Supported profile and entrypoints\n", name);
126   max_num_profiles = vaMaxNumProfiles(va_dpy);
127   profile_list = malloc(max_num_profiles * sizeof(VAProfile));
128
129   if (!profile_list) {
130       printf("Failed to allocate memory for profile list\n");
131       ret_val = 5;
132       goto error;
133   }
134
135   va_status = vaQueryConfigProfiles(va_dpy, profile_list, &num_profiles);
136   CHECK_VASTATUS(va_status, "vaQueryConfigProfiles", 6);
137
138   for (i = 0; i < num_profiles; i++) {
139       char *profile_str;
140
141       profile = profile_list[i];
142       va_status = vaQueryConfigEntrypoints(va_dpy, profile, entrypoints, 
143                                            &num_entrypoint);
144       if (va_status == VA_STATUS_ERROR_UNSUPPORTED_PROFILE)
145         continue;
146
147       CHECK_VASTATUS(va_status, "vaQueryConfigEntrypoints", 4);
148
149       profile_str = profile_string(profile);
150       for (entrypoint = 0; entrypoint < num_entrypoint; entrypoint++)
151           printf("      %-32s:  %s\n", profile_str, entrypoint_string(entrypoints[entrypoint]));
152   }
153   
154 error:
155   free(profile_list);
156   vaTerminate(va_dpy);
157   va_close_display(va_dpy);
158   
159   return ret_val;
160 }