Merge branch 'master' of ssh://git.freedesktop.org/git/mesa/mesa into pipe-video
[mesa.git] / src / gallium / state_trackers / xorg / xvmc / block.c
1 /**************************************************************************
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
28 #include <assert.h>
29 #include <X11/Xlib.h>
30 #include <X11/extensions/XvMClib.h>
31 #include <util/u_memory.h>
32 #include "xvmc_private.h"
33
34 PUBLIC
35 Status XvMCCreateBlocks(Display *dpy, XvMCContext *context, unsigned int num_blocks, XvMCBlockArray *blocks)
36 {
37 assert(dpy);
38
39 if (!context)
40 return XvMCBadContext;
41 if (num_blocks == 0)
42 return BadValue;
43
44 assert(blocks);
45
46 blocks->context_id = context->context_id;
47 blocks->num_blocks = num_blocks;
48 blocks->blocks = MALLOC(BLOCK_SIZE_BYTES * num_blocks);
49 blocks->privData = NULL;
50
51 return Success;
52 }
53
54 PUBLIC
55 Status XvMCDestroyBlocks(Display *dpy, XvMCBlockArray *blocks)
56 {
57 assert(dpy);
58 assert(blocks);
59 FREE(blocks->blocks);
60
61 return Success;
62 }
63
64 PUBLIC
65 Status XvMCCreateMacroBlocks(Display *dpy, XvMCContext *context, unsigned int num_blocks, XvMCMacroBlockArray *blocks)
66 {
67 assert(dpy);
68
69 if (!context)
70 return XvMCBadContext;
71 if (num_blocks == 0)
72 return BadValue;
73
74 assert(blocks);
75
76 blocks->context_id = context->context_id;
77 blocks->num_blocks = num_blocks;
78 blocks->macro_blocks = MALLOC(sizeof(XvMCMacroBlock) * num_blocks);
79 blocks->privData = NULL;
80
81 return Success;
82 }
83
84 PUBLIC
85 Status XvMCDestroyMacroBlocks(Display *dpy, XvMCMacroBlockArray *blocks)
86 {
87 assert(dpy);
88 assert(blocks);
89 FREE(blocks->macro_blocks);
90
91 return Success;
92 }