blob: 8d26b196fdc2ed5cdb86153e06e0acfc505d3aa3 [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>
Christian Königb4867662011-04-12 20:38:21 +020033
Christian Königefaf0242011-04-13 19:32:49 +020034#include <pipe/p_video_state.h>
35
Younes Manton8580b7a2010-03-05 23:14:49 -050036#include <util/u_debug.h>
Christian Königb4867662011-04-12 20:38:21 +020037#include <util/u_math.h>
Younes Mantone44c8562009-09-27 20:18:02 -040038
Christian Königc7b65dc2011-04-13 18:50:18 +020039#include <vl/vl_csc.h>
40
Younes Mantone44c8562009-09-27 20:18:02 -040041#define BLOCK_SIZE_SAMPLES 64
42#define BLOCK_SIZE_BYTES (BLOCK_SIZE_SAMPLES * 2)
43
Younes Mantone60a8e42009-11-02 20:32:58 -050044struct vl_context;
Christian Königb4867662011-04-12 20:38:21 +020045
46struct pipe_video_decoder;
47struct pipe_video_compositor;
48struct pipe_video_decode_buffer;
49struct pipe_video_buffer;
50
Christian König4a0b80f2011-03-25 23:38:50 +010051struct pipe_sampler_view;
Younes Mantone44c8562009-09-27 20:18:02 -040052struct pipe_fence_handle;
53
54typedef struct
55{
Younes Manton80468462010-03-05 23:26:03 -050056 struct vl_context *vctx;
Christian Königd9ad3aa2011-04-06 00:06:20 +020057 struct pipe_video_decoder *decoder;
Christian Könige5f78a72011-04-03 16:09:23 +020058 struct pipe_video_compositor *compositor;
59
Christian Königc7b65dc2011-04-13 18:50:18 +020060 enum VL_CSC_COLOR_STANDARD color_standard;
61 struct vl_procamp procamp;
62
Younes Manton5eb822c2010-04-18 12:16:40 -040063 unsigned short subpicture_max_width;
64 unsigned short subpicture_max_height;
Christian Königf3f212a2011-04-27 12:05:46 +020065
66 struct pipe_video_rect dst_rect;
67 struct pipe_surface *drawable_surface;
68
Younes Mantone44c8562009-09-27 20:18:02 -040069} XvMCContextPrivate;
70
71typedef struct
72{
Christian Königd9ad3aa2011-04-06 00:06:20 +020073 struct pipe_video_decode_buffer *decode_buffer;
74 struct pipe_video_buffer *video_buffer;
75
Christian König884cb792011-03-24 20:33:32 +010076 bool mapped; // are we still mapped to memory?
77
Christian König2e6274f2011-04-23 13:24:35 +020078 struct {
79 unsigned num_blocks_added;
80 struct pipe_ycbcr_block *stream;
81 short *buffer;
82 } ycbcr[3];
Christian Königb7acf832011-04-20 13:44:26 +020083
Christian König2e6274f2011-04-23 13:24:35 +020084 unsigned mv_stride;
Christian Königb7acf832011-04-20 13:44:26 +020085 struct {
86 XvMCSurface *surface;
87 struct pipe_motionvector *mv;
88 } ref[2];
Christian König884cb792011-03-24 20:33:32 +010089
Christian König104ac002011-04-24 20:08:11 +020090 struct pipe_fence_handle *fence;
Younes Manton80468462010-03-05 23:26:03 -050091
92 /* The subpicture associated with this surface, if any. */
93 XvMCSubpicture *subpicture;
Younes Manton80468462010-03-05 23:26:03 -050094
95 /* Some XvMC functions take a surface but not a context,
96 so we keep track of which context each surface belongs to. */
97 XvMCContext *context;
Younes Mantone44c8562009-09-27 20:18:02 -040098} XvMCSurfacePrivate;
99
Younes Manton5f730692009-11-22 16:40:15 -0500100typedef struct
101{
Christian König4a0b80f2011-03-25 23:38:50 +0100102 struct pipe_sampler_view *sampler;
Younes Manton80468462010-03-05 23:26:03 -0500103
Christian König849a0b02011-03-26 11:46:07 +0100104 /* optional palette for this subpicture */
105 struct pipe_sampler_view *palette;
106
Christian Königefaf0242011-04-13 19:32:49 +0200107 struct pipe_video_rect src_rect;
108 struct pipe_video_rect dst_rect;
109
Younes Manton80468462010-03-05 23:26:03 -0500110 /* The surface this subpicture is currently associated with, if any. */
111 XvMCSurface *surface;
112
113 /* Some XvMC functions take a subpicture but not a context,
114 so we keep track of which context each subpicture belongs to. */
115 XvMCContext *context;
116} XvMCSubpicturePrivate;
Younes Manton5f730692009-11-22 16:40:15 -0500117
Younes Manton8580b7a2010-03-05 23:14:49 -0500118#define XVMC_OUT 0
119#define XVMC_ERR 1
120#define XVMC_WARN 2
121#define XVMC_TRACE 3
Christian Königb4867662011-04-12 20:38:21 +0200122
Younes Manton8580b7a2010-03-05 23:14:49 -0500123static INLINE void XVMC_MSG(unsigned int level, const char *fmt, ...)
124{
Christian Königb4867662011-04-12 20:38:21 +0200125 static int debug_level = -1;
Younes Manton8580b7a2010-03-05 23:14:49 -0500126
Christian Königb4867662011-04-12 20:38:21 +0200127 if (debug_level == -1) {
Christian Königc7b65dc2011-04-13 18:50:18 +0200128 debug_level = MAX2(debug_get_num_option("XVMC_DEBUG", 0), 0);
Younes Manton8580b7a2010-03-05 23:14:49 -0500129 }
130
131 if (level <= debug_level) {
132 va_list ap;
133 va_start(ap, fmt);
134 _debug_vprintf(fmt, ap);
135 va_end(ap);
136 }
137}
138
Younes Mantone44c8562009-09-27 20:18:02 -0400139#endif /* xvmc_private_h */