blob: 6e1b86304baab1a583846ae8640927e3e1699799 [file] [log] [blame]
Younes Mantonfcb595c2009-10-01 22:16:10 -04001/**************************************************************************
2 *
3 * Copyright 2009 Younes Manton.
4 * All Rights Reserved.
5 *
6 * 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:
13 *
14 * 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.
17 *
18 * 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.
25 *
26 **************************************************************************/
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>
33
34#define BLOCK_SIZE_SAMPLES 64
35#define BLOCK_SIZE_BYTES (BLOCK_SIZE_SAMPLES * 2)
36
Younes Mantone60a8e42009-11-02 20:32:58 -050037struct vl_context;
Younes Mantone44c8562009-09-27 20:18:02 -040038struct pipe_surface;
39struct pipe_fence_handle;
40
41typedef struct
42{
Younes Mantone60a8e42009-11-02 20:32:58 -050043 struct vl_context *vctx;
Younes Mantone44c8562009-09-27 20:18:02 -040044 struct pipe_surface *backbuffer;
45} XvMCContextPrivate;
46
47typedef struct
48{
49 struct pipe_video_surface *pipe_vsfc;
50 struct pipe_fence_handle *render_fence;
51 struct pipe_fence_handle *disp_fence;
52
53 /* Some XvMC functions take a surface but not a context,
54 so we keep track of which context each surface belongs to. */
55 XvMCContext *context;
56} XvMCSurfacePrivate;
57
Younes Manton5f730692009-11-22 16:40:15 -050058typedef struct
59{
60 struct pipe_surface *sfc;
61 /* Some XvMC functions take a subpicture but not a context,
62 so we keep track of which context each subpicture belongs to. */
63 XvMCContext *context;
64} XvMCSubPicturePrivate;
65
Younes Mantone44c8562009-09-27 20:18:02 -040066#endif /* xvmc_private_h */