blob: 1e2dfb4223ac6e9227cc57b7099258d949217846 [file] [log] [blame]
Younes Mantonfcb595c2009-10-01 22:16:10 -04001/**************************************************************************
Younes Manton80468462010-03-05 23:26:03 -05002 *
Younes Mantonfcb595c2009-10-01 22:16:10 -04003 * Copyright 2009 Younes Manton.
4 * All Rights Reserved.
Younes Manton80468462010-03-05 23:26:03 -05005 *
Younes Mantonfcb595c2009-10-01 22:16:10 -04006 * Permission is hereby granted, free of charge, to any person obtaining a
7 * copy of this software and associated documentation files (the
8 * "Software"), to deal in the Software without restriction, including
9 * without limitation the rights to use, copy, modify, merge, publish,
10 * distribute, sub license, and/or sell copies of the Software, and to
11 * permit persons to whom the Software is furnished to do so, subject to
12 * the following conditions:
Younes Manton80468462010-03-05 23:26:03 -050013 *
Younes Mantonfcb595c2009-10-01 22:16:10 -040014 * The above copyright notice and this permission notice (including the
15 * next paragraph) shall be included in all copies or substantial portions
16 * of the Software.
Younes Manton80468462010-03-05 23:26:03 -050017 *
Younes Mantonfcb595c2009-10-01 22:16:10 -040018 * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS
19 * OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
20 * MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NON-INFRINGEMENT.
21 * IN NO EVENT SHALL TUNGSTEN GRAPHICS AND/OR ITS SUPPLIERS BE LIABLE FOR
22 * ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT,
23 * TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE
24 * SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
Younes Manton80468462010-03-05 23:26:03 -050025 *
Younes Mantonfcb595c2009-10-01 22:16:10 -040026 **************************************************************************/
27
Younes Mantone44c8562009-09-27 20:18:02 -040028#ifndef xvmc_private_h
29#define xvmc_private_h
30
31#include <X11/Xlib.h>
32#include <X11/extensions/XvMClib.h>
Younes Manton8580b7a2010-03-05 23:14:49 -050033#include <util/u_debug.h>
Younes Mantone44c8562009-09-27 20:18:02 -040034
35#define BLOCK_SIZE_SAMPLES 64
36#define BLOCK_SIZE_BYTES (BLOCK_SIZE_SAMPLES * 2)
37
Younes Mantone60a8e42009-11-02 20:32:58 -050038struct vl_context;
Younes Mantone44c8562009-09-27 20:18:02 -040039struct pipe_surface;
40struct pipe_fence_handle;
41
42typedef struct
43{
Younes Manton80468462010-03-05 23:26:03 -050044 struct vl_context *vctx;
45 struct pipe_surface *backbuffer;
Younes Manton5eb822c2010-04-18 12:16:40 -040046 unsigned short subpicture_max_width;
47 unsigned short subpicture_max_height;
Younes Mantone44c8562009-09-27 20:18:02 -040048} XvMCContextPrivate;
49
50typedef struct
51{
Younes Manton299407a2010-03-12 12:09:44 -050052 struct pipe_surface *pipe_vsfc;
Younes Manton80468462010-03-05 23:26:03 -050053 struct pipe_fence_handle *render_fence;
54 struct pipe_fence_handle *disp_fence;
55
56 /* The subpicture associated with this surface, if any. */
57 XvMCSubpicture *subpicture;
58 short subx, suby;
59 unsigned short subw, subh;
60 short surfx, surfy;
61 unsigned short surfw, surfh;
62
63 /* Some XvMC functions take a surface but not a context,
64 so we keep track of which context each surface belongs to. */
65 XvMCContext *context;
Younes Mantone44c8562009-09-27 20:18:02 -040066} XvMCSurfacePrivate;
67
Younes Manton5f730692009-11-22 16:40:15 -050068typedef struct
69{
Younes Manton80468462010-03-05 23:26:03 -050070 struct pipe_surface *sfc;
71
72 /* The surface this subpicture is currently associated with, if any. */
73 XvMCSurface *surface;
74
75 /* Some XvMC functions take a subpicture but not a context,
76 so we keep track of which context each subpicture belongs to. */
77 XvMCContext *context;
78} XvMCSubpicturePrivate;
Younes Manton5f730692009-11-22 16:40:15 -050079
Younes Manton8580b7a2010-03-05 23:14:49 -050080#define XVMC_OUT 0
81#define XVMC_ERR 1
82#define XVMC_WARN 2
83#define XVMC_TRACE 3
84static INLINE void XVMC_MSG(unsigned int level, const char *fmt, ...)
85{
86 static boolean check_dbg_level = TRUE;
87 static unsigned int debug_level;
88
89 if (check_dbg_level) {
90 debug_level = debug_get_num_option("XVMC_DEBUG", 0);
91 check_dbg_level = FALSE;
92 }
93
94 if (level <= debug_level) {
95 va_list ap;
96 va_start(ap, fmt);
97 _debug_vprintf(fmt, ap);
98 va_end(ap);
99 }
100}
101
Younes Mantone44c8562009-09-27 20:18:02 -0400102#endif /* xvmc_private_h */