blob: 5e976cb8916a06e295bb9c96f658fb79f7cbc060 [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;
Christian König4a0b80f2011-03-25 23:38:50 +010039struct pipe_sampler_view;
Younes Mantone44c8562009-09-27 20:18:02 -040040struct 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{
Christian Königba0bff82011-03-22 19:58:21 +010052 struct pipe_video_buffer *pipe_buffer;
Christian König884cb792011-03-24 20:33:32 +010053 bool mapped; // are we still mapped to memory?
54
55 XvMCSurface *ref_surfaces[2];
56
57 struct pipe_fence_handle *flush_fence;
Younes Manton80468462010-03-05 23:26:03 -050058 struct pipe_fence_handle *render_fence;
59 struct pipe_fence_handle *disp_fence;
60
61 /* The subpicture associated with this surface, if any. */
62 XvMCSubpicture *subpicture;
63 short subx, suby;
64 unsigned short subw, subh;
65 short surfx, surfy;
66 unsigned short surfw, surfh;
67
68 /* Some XvMC functions take a surface but not a context,
69 so we keep track of which context each surface belongs to. */
70 XvMCContext *context;
Younes Mantone44c8562009-09-27 20:18:02 -040071} XvMCSurfacePrivate;
72
Younes Manton5f730692009-11-22 16:40:15 -050073typedef struct
74{
Christian König4a0b80f2011-03-25 23:38:50 +010075 struct pipe_sampler_view *sampler;
Younes Manton80468462010-03-05 23:26:03 -050076
Christian König849a0b02011-03-26 11:46:07 +010077 /* optional palette for this subpicture */
78 struct pipe_sampler_view *palette;
79
Younes Manton80468462010-03-05 23:26:03 -050080 /* The surface this subpicture is currently associated with, if any. */
81 XvMCSurface *surface;
82
83 /* Some XvMC functions take a subpicture but not a context,
84 so we keep track of which context each subpicture belongs to. */
85 XvMCContext *context;
86} XvMCSubpicturePrivate;
Younes Manton5f730692009-11-22 16:40:15 -050087
Younes Manton8580b7a2010-03-05 23:14:49 -050088#define XVMC_OUT 0
89#define XVMC_ERR 1
90#define XVMC_WARN 2
91#define XVMC_TRACE 3
92static INLINE void XVMC_MSG(unsigned int level, const char *fmt, ...)
93{
94 static boolean check_dbg_level = TRUE;
95 static unsigned int debug_level;
96
97 if (check_dbg_level) {
98 debug_level = debug_get_num_option("XVMC_DEBUG", 0);
99 check_dbg_level = FALSE;
100 }
101
102 if (level <= debug_level) {
103 va_list ap;
104 va_start(ap, fmt);
105 _debug_vprintf(fmt, ap);
106 va_end(ap);
107 }
108}
109
Younes Mantone44c8562009-09-27 20:18:02 -0400110#endif /* xvmc_private_h */