blob: a1d026f704e8affbe6e9db46723e6a394e503ebe [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.
José Fonseca87712852014-01-17 16:27:50 +000021 * IN NO EVENT SHALL VMWARE AND/OR ITS SUPPLIERS BE LIABLE FOR
Younes Mantonfcb595c2009-10-01 22:16:10 -040022 * 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
Kai Wasserbäch7ea55062011-08-27 17:51:56 +020034#include "pipe/p_video_state.h"
Christian Königefaf0242011-04-13 19:32:49 +020035
Kai Wasserbäch7ea55062011-08-27 17:51:56 +020036#include "util/u_debug.h"
37#include "util/u_math.h"
Younes Mantone44c8562009-09-27 20:18:02 -040038
Kai Wasserbäch7ea55062011-08-27 17:51:56 +020039#include "vl/vl_csc.h"
40#include "vl/vl_compositor.h"
Christian Königc7b65dc2011-04-13 18:50:18 +020041
Younes Mantone44c8562009-09-27 20:18:02 -040042#define BLOCK_SIZE_SAMPLES 64
43#define BLOCK_SIZE_BYTES (BLOCK_SIZE_SAMPLES * 2)
44
Christian Königf2f70642013-07-15 03:48:04 -060045struct pipe_video_codec;
Christian Königb4867662011-04-12 20:38:21 +020046struct pipe_video_buffer;
47
Christian König4a0b80f2011-03-25 23:38:50 +010048struct pipe_sampler_view;
Younes Mantone44c8562009-09-27 20:18:02 -040049struct pipe_fence_handle;
50
51typedef struct
52{
Christian König1448e822012-02-15 17:20:50 +010053 struct vl_screen *vscreen;
54 struct pipe_context *pipe;
Christian Königf2f70642013-07-15 03:48:04 -060055 struct pipe_video_codec *decoder;
Christian Könige5f78a72011-04-03 16:09:23 +020056
Christian Königc7b65dc2011-04-13 18:50:18 +020057 enum VL_CSC_COLOR_STANDARD color_standard;
58 struct vl_procamp procamp;
Christian Königbd5fd672011-07-08 14:44:19 +020059 struct vl_compositor compositor;
Christian König32c43812012-02-25 13:09:17 +010060 struct vl_compositor_state cstate;
Christian Königc7b65dc2011-04-13 18:50:18 +020061
Younes Manton5eb822c2010-04-18 12:16:40 -040062 unsigned short subpicture_max_width;
63 unsigned short subpicture_max_height;
Christian Königf3f212a2011-04-27 12:05:46 +020064
Younes Mantone44c8562009-09-27 20:18:02 -040065} XvMCContextPrivate;
66
67typedef struct
68{
Christian Königd9ad3aa2011-04-06 00:06:20 +020069 struct pipe_video_buffer *video_buffer;
70
Maarten Lankhorsta09754c2011-09-02 16:20:02 +020071 /* nonzero if this picture is already being decoded */
Jan Veselya2f2eeb2014-12-02 15:14:16 -050072 unsigned picture_structure;
Christian König884cb792011-03-24 20:33:32 +010073
Christian Königd3770d62011-08-10 18:07:01 +020074 XvMCSurface *ref[2];
Christian König884cb792011-03-24 20:33:32 +010075
Christian König104ac002011-04-24 20:08:11 +020076 struct pipe_fence_handle *fence;
Younes Manton80468462010-03-05 23:26:03 -050077
78 /* The subpicture associated with this surface, if any. */
79 XvMCSubpicture *subpicture;
Younes Manton80468462010-03-05 23:26:03 -050080
81 /* Some XvMC functions take a surface but not a context,
82 so we keep track of which context each surface belongs to. */
83 XvMCContext *context;
Younes Mantone44c8562009-09-27 20:18:02 -040084} XvMCSurfacePrivate;
85
Younes Manton5f730692009-11-22 16:40:15 -050086typedef struct
87{
Christian König4a0b80f2011-03-25 23:38:50 +010088 struct pipe_sampler_view *sampler;
Younes Manton80468462010-03-05 23:26:03 -050089
Christian König849a0b02011-03-26 11:46:07 +010090 /* optional palette for this subpicture */
91 struct pipe_sampler_view *palette;
92
Christian Königd645dc62012-02-25 13:53:29 +010093 struct u_rect src_rect;
94 struct u_rect dst_rect;
Christian Königefaf0242011-04-13 19:32:49 +020095
Younes Manton80468462010-03-05 23:26:03 -050096 /* The surface this subpicture is currently associated with, if any. */
97 XvMCSurface *surface;
98
99 /* Some XvMC functions take a subpicture but not a context,
100 so we keep track of which context each subpicture belongs to. */
101 XvMCContext *context;
102} XvMCSubpicturePrivate;
Younes Manton5f730692009-11-22 16:40:15 -0500103
Younes Manton8580b7a2010-03-05 23:14:49 -0500104#define XVMC_OUT 0
105#define XVMC_ERR 1
106#define XVMC_WARN 2
107#define XVMC_TRACE 3
Christian Königb4867662011-04-12 20:38:21 +0200108
Ilia Mirkina2a1a582015-07-20 19:58:43 -0400109static inline void XVMC_MSG(int level, const char *fmt, ...)
Younes Manton8580b7a2010-03-05 23:14:49 -0500110{
Christian Königb4867662011-04-12 20:38:21 +0200111 static int debug_level = -1;
Younes Manton8580b7a2010-03-05 23:14:49 -0500112
Christian Königb4867662011-04-12 20:38:21 +0200113 if (debug_level == -1) {
Christian Königc7b65dc2011-04-13 18:50:18 +0200114 debug_level = MAX2(debug_get_num_option("XVMC_DEBUG", 0), 0);
Younes Manton8580b7a2010-03-05 23:14:49 -0500115 }
116
117 if (level <= debug_level) {
118 va_list ap;
119 va_start(ap, fmt);
120 _debug_vprintf(fmt, ap);
121 va_end(ap);
122 }
123}
124
Younes Mantone44c8562009-09-27 20:18:02 -0400125#endif /* xvmc_private_h */