vainfo: silence compiler warning
[platform/upstream/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     exit(ret);                                                          \
37 }
38
39 static char * profile_string(VAProfile profile)
40 {
41     switch (profile) {
42             case VAProfileNone: return "VAProfileNone";
43             case VAProfileMPEG2Simple: return "VAProfileMPEG2Simple";
44             case VAProfileMPEG2Main: return "VAProfileMPEG2Main";
45             case VAProfileMPEG4Simple: return "VAProfileMPEG4Simple";
46             case VAProfileMPEG4AdvancedSimple: return "VAProfileMPEG4AdvancedSimple";
47             case VAProfileMPEG4Main: return "VAProfileMPEG4Main";
48             case VAProfileH264Baseline: return "VAProfileH264Baseline";
49             case VAProfileH264Main: return "VAProfileH264Main";
50             case VAProfileH264High: return "VAProfileH264High";
51             case VAProfileVC1Simple: return "VAProfileVC1Simple";
52             case VAProfileVC1Main: return "VAProfileVC1Main";
53             case VAProfileVC1Advanced: return "VAProfileVC1Advanced";
54             case VAProfileH263Baseline: return "VAProfileH263Baseline";
55             case VAProfileH264ConstrainedBaseline: return "VAProfileH264ConstrainedBaseline";
56             case VAProfileJPEGBaseline: return "VAProfileJPEGBaseline";
57             default:
58                 break;
59     }
60     return "<unknown profile>";
61 }
62
63
64 static char * entrypoint_string(VAEntrypoint entrypoint)
65 {
66     switch (entrypoint) {
67             case VAEntrypointVLD:return "VAEntrypointVLD";
68             case VAEntrypointIZZ:return "VAEntrypointIZZ";
69             case VAEntrypointIDCT:return "VAEntrypointIDCT";
70             case VAEntrypointMoComp:return "VAEntrypointMoComp";
71             case VAEntrypointDeblocking:return "VAEntrypointDeblocking";
72             case VAEntrypointEncSlice:return "VAEntrypointEncSlice";
73             case VAEntrypointEncPicture:return "VAEntrypointEncPicture";
74             case VAEntrypointVideoProc:return "VAEntrypointVideoProc";
75             default:
76                 break;
77     }
78     return "<unknown entrypoint>";
79 }
80
81 int main(int argc, const char* argv[])
82 {
83   VADisplay va_dpy;
84   VAStatus va_status;
85   int major_version, minor_version;
86   const char *driver;
87   const char *name = strrchr(argv[0], '/'); 
88   VAProfile profile;
89   VAEntrypoint entrypoint, entrypoints[10];
90   int num_entrypoint;
91   
92   if (name)
93       name++;
94   else
95       name = argv[0];
96
97   va_dpy = va_open_display();
98   if (NULL == va_dpy)
99   {
100       fprintf(stderr, "%s: vaGetDisplay() failed\n", name);
101       return 2;
102   }
103   
104   va_status = vaInitialize(va_dpy, &major_version, &minor_version);
105   CHECK_VASTATUS(va_status, "vaInitialize", 3);
106   
107   printf("%s: VA-API version: %d.%d (libva %s)\n",
108          name, major_version, minor_version, LIBVA_VERSION_S);
109
110   driver = vaQueryVendorString(va_dpy);
111   printf("%s: Driver version: %s\n", name, driver ? driver : "<unknown>");
112
113   printf("%s: Supported profile and entrypoints\n", name);
114   for   (profile = VAProfileNone; profile <= VAProfileH264ConstrainedBaseline; profile++) {
115       char *profile_str;
116
117       va_status = vaQueryConfigEntrypoints(va_dpy, profile, entrypoints, 
118                                            &num_entrypoint);
119       if (va_status == VA_STATUS_ERROR_UNSUPPORTED_PROFILE)
120         continue;
121
122       CHECK_VASTATUS(va_status, "vaQueryConfigEntrypoints", 4);
123
124       profile_str = profile_string(profile);
125       for (entrypoint = 0; entrypoint < num_entrypoint; entrypoint++)
126           printf("      %-32s:  %s\n", profile_str, entrypoint_string(entrypoints[entrypoint]));
127   }
128   
129   vaTerminate(va_dpy);
130   va_close_display(va_dpy);
131   
132   return 0;
133 }