2 * Copyright (c) 2009 Intel Corporation. All Rights Reserved.
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:
12 * The above copyright notice and this permission notice (including the
13 * next paragraph) shall be included in all copies or substantial portions
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.
32 extern int trace_flag
;
34 #define VA_TRACE_FLAG_LOG 0x1
35 #define VA_TRACE_FLAG_BUFDATA 0x2
36 #define VA_TRACE_FLAG_CODEDBUF 0x4
37 #define VA_TRACE_FLAG_SURFACE_DECODE 0x8
38 #define VA_TRACE_FLAG_SURFACE_ENCODE 0x10
39 #define VA_TRACE_FLAG_SURFACE_JPEG 0x20
40 #define VA_TRACE_FLAG_SURFACE (VA_TRACE_FLAG_SURFACE_DECODE | \
41 VA_TRACE_FLAG_SURFACE_ENCODE | \
42 VA_TRACE_FLAG_SURFACE_JPEG)
44 #define VA_TRACE_LOG(trace_func,...) \
45 if (trace_flag & VA_TRACE_FLAG_LOG) { \
46 trace_func(__VA_ARGS__); \
48 #define VA_TRACE_SURFACE(trace_func,...) \
49 if (trace_flag & (VA_TRACE_FLAG_SURFACE | VA_TRACE_FLAG_CODEDBUF)) { \
50 trace_func(__VA_ARGS__); \
53 void va_TraceInit(VADisplay dpy
);
54 void va_TraceEnd(VADisplay dpy
);
56 void va_TraceMsg(int idx
, const char *msg
, ...);
58 void va_TraceInitialize (
60 int *major_version
, /* out */
61 int *minor_version
/* out */
64 void va_TraceTerminate (
68 void va_TraceCreateConfig(
71 VAEntrypoint entrypoint
,
72 VAConfigAttrib
*attrib_list
,
74 VAConfigID
*config_id
/* out */
77 void va_TraceCreateSurfaces(
83 VASurfaceID
*surfaces
, /* out */
84 VASurfaceAttrib
*attrib_list
,
85 unsigned int num_attribs
88 void va_TraceCreateContext(
94 VASurfaceID
*render_targets
,
95 int num_render_targets
,
96 VAContextID
*context
/* out */
99 void va_TraceCreateBuffer (
101 VAContextID context
, /* in */
102 VABufferType type
, /* in */
103 unsigned int size
, /* in */
104 unsigned int num_elements
, /* in */
106 VABufferID
*buf_id
/* out */
109 void va_TraceDestroyBuffer (
111 VABufferID buf_id
/* in */
114 void va_TraceMapBuffer (
116 VABufferID buf_id
, /* in */
117 void **pbuf
/* out */
121 void va_TraceBeginPicture(
124 VASurfaceID render_target
127 void va_TraceRenderPicture(
134 void va_TraceEndPicture(
140 void va_TraceSyncSurface(
142 VASurfaceID render_target
145 void va_TraceQuerySurfaceStatus(
147 VASurfaceID render_target
,
148 VASurfaceStatus
*status
/* out */
151 void va_TraceQuerySurfaceError(
154 VAStatus error_status
,
155 void **error_info
/*out*/
159 void va_TraceMaxNumDisplayAttributes (
164 void va_TraceQueryDisplayAttributes (
166 VADisplayAttribute
*attr_list
, /* out */
167 int *num_attributes
/* out */
170 void va_TraceGetDisplayAttributes (
172 VADisplayAttribute
*attr_list
,
176 void va_TraceSetDisplayAttributes (
178 VADisplayAttribute
*attr_list
,
182 /* extern function called by display side */
183 void va_TracePutSurface (
186 void *draw
, /* the target Drawable */
193 unsigned short destw
,
194 unsigned short desth
,
195 VARectangle
*cliprects
, /* client supplied clip list */
196 unsigned int number_cliprects
, /* number of clip rects in the clip list */
197 unsigned int flags
/* de-interlacing flags */
205 #endif /* VA_TRACE_H */