1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340
|
/*
* Copyright (c) 2009-2017, Intel Corporation
*
* Permission is hereby granted, free of charge, to any person obtaining a
* copy of this software and associated documentation files (the "Software"),
* to deal in the Software without restriction, including without limitation
* the rights to use, copy, modify, merge, publish, distribute, sublicense,
* and/or sell copies of the Software, and to permit persons to whom the
* Software is furnished to do so, subject to the following conditions:
*
* The above copyright notice and this permission notice shall be included
* in all copies or substantial portions of the Software.
*
* THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS
* OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
* FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL
* THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR
* OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE,
* ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR
* OTHER DEALINGS IN THE SOFTWARE.
*/
//!
//! \file media_libva_putsurface_linux.h
//! \brief libva(and its extension) putsurface linux implementaion head file
//!
#ifndef __MEDIA_LIBVA_PUTSURFACE_LINUX_H__
#define __MEDIA_LIBVA_PUTSURFACE_LINUX_H__
#include <va/va.h>
#include <va/va_backend.h>
#include <va/va_dricommon.h>
#include "mos_defs.h"
#define LIBVA_X11_NAME "libva-x11.so.2"
typedef struct dri_drawable *(*dri_get_drawable_func)(
VADriverContextP ctx, XID drawable);
typedef union dri_buffer *(*dri_get_rendering_buffer_func)(
VADriverContextP ctx, struct dri_drawable *d);
typedef void (*dri_swap_buffer_func)(
VADriverContextP ctx, struct dri_drawable *d);
//!
//! \struct dri_vtable
//! \brief VA api driver table
//!
struct dri_vtable {
dri_get_drawable_func get_drawable;
dri_get_rendering_buffer_func get_rendering_buffer;
dri_swap_buffer_func swap_buffer;
};
//!
//! \struct va_dri_output
//! \brief VA driver output
//!
struct va_dri_output {
struct dso_handle *handle;
struct dri_vtable vtable;
};
//!
//! \struct dso_symbol
//! \brief Symbol lookup table
//!
struct dso_symbol {
/** Symbol name */
const char *name;
/** Offset into the supplied vtable where symbol is to be loaded. */
uint32_t offset;
};
#include <dlfcn.h>
//#include "dso_utils.h"
/** Generic pointer to function. */
typedef void (*dso_generic_func)(void);
//!
//! \struct dso_handle
//! \brief Dso handle
//!
struct dso_handle {
void *handle;
};
//!
//! \brief Output driver initialization
//!
//! \param [in] ctx
//! Pointer to VA driver context
//!
//! \return bool
//! true if call success, else false
//!
bool output_dri_init(VADriverContextP ctx);
//!
//! \brief Closes and disposed any allocated data
//!
//! \param [in] h
//! Dso handle
//!
void dso_close(struct dso_handle *h);
//!
//! \brief Rectangle initialization
//!
//! \param [in] Rect
//! Rectangle
//! \param [in] destx
//! Destination X
//! \param [in] desty
//! Destination Y
//! \param [in] destw
//! Destination W
//! \param [in] desth
//! Destination H
//!
void Rect_init(
RECT *Rect,
int16_t destx,
int16_t desty,
uint16_t destw,
uint16_t desth
);
typedef GC (*TypeXCreateGC)(Display*, Drawable, unsigned long, XGCValues*);
typedef int32_t (*TypeXFreeGC)(Display*, GC);
typedef XImage* (*TypeXCreateImage)(Display*, Visual*, uint32_t, int32_t, int32_t,
char*, uint32_t, uint32_t, int32_t, int32_t);
typedef int32_t (*TypeXDestroyImage)(XImage*);
typedef int32_t (*TypeXPutImage)(Display*, Drawable, GC, XImage*, int32_t, int32_t, int32_t, int32_t,
uint32_t, uint32_t);
//! \brief Ddi codec put surface linux vphal ext
//!
//! \param ctx
//! Pointer to VA driver context
//! \param surface
//! VA surface ID
//! \param draw
//! Drawable of window system
//! \param srcx
//! Source X of the region
//! \param srcy
//! Source Y of the region
//! \param srcw
//! Source W of the region
//! \param srch
//! Source H of the region
//! \param destx
//! Destination X
//! \param desty
//! Destination Y
//! \param destw
//! Destination W
//! \param desth
//! Destination H
//! \param cliprects
//! Client-supplied clip list
//! \param number_cliprects
//! Number of clip rects in the clip list
//! \param flags
//! De-interlacing flags
//!
//! \return VAStatus
//! VA_STATUS_SUCCESS if success, else fail reason
//!
VAStatus DdiCodec_PutSurfaceLinuxVphalExt(
VADriverContextP ctx,
VASurfaceID surface,
void *draw, /* Drawable of window system */
int16_t srcx,
int16_t srcy,
uint16_t srcw,
uint16_t srch,
int16_t destx,
int16_t desty,
uint16_t destw,
uint16_t desth,
VARectangle *cliprects, /* client supplied clip list */
uint32_t number_cliprects, /* number of clip rects in the clip list */
uint32_t flags /* de-interlacing flags */
);
//! \brief Ddi codec put surface linux hardware
//!
//! \param ctx
//! Pointer to VA driver context
//! \param surface
//! VA surface ID
//! \param draw
//! Drawable of window system
//! \param srcx
//! Source X of the region
//! \param srcy
//! Source Y of the region
//! \param srcw
//! Source W of the region
//! \param srch
//! Source H of the region
//! \param destx
//! Destination X
//! \param desty
//! Destination Y
//! \param destw
//! Destination W
//! \param desth
//! Destination H
//! \param cliprects
//! Client-supplied clip list
//! \param number_cliprects
//! Number of clip rects in the clip list
//! \param flags
//! De-interlacing flags
//!
//! \return VAStatus
//! VA_STATUS_SUCCESS if success, else fail reason
//!
VAStatus DdiCodec_PutSurfaceLinuxHW(
VADriverContextP ctx,
VASurfaceID surface,
void* draw, /* Drawable of window system */
int16_t srcx,
int16_t srcy,
uint16_t srcw,
uint16_t srch,
int16_t destx,
int16_t desty,
uint16_t destw,
uint16_t desth,
VARectangle *cliprects, /* client supplied clip list */
uint32_t number_cliprects, /* number of clip rects in the clip list */
uint32_t flags /* de-interlacing flags */
);
#ifndef ANDROID
//! \brief Ddi codec put surface linux software
//!
//! \param ctx
//! Pointer to VA driver context
//! \param surface
//! VA surface ID
//! \param draw
//! Drawable of window system
//! \param srcx
//! Source X of the region
//! \param srcy
//! Source Y of the region
//! \param srcw
//! Source W of the region
//! \param srch
//! Source H of the region
//! \param destx
//! Destination X
//! \param desty
//! Destination Y
//! \param destw
//! Destination W
//! \param desth
//! Destination H
//! \param cliprects
//! Client-supplied clip list
//! \param number_cliprects
//! Number of clip rects in the clip list
//! \param flags
//! De-interlacing flags
//!
//! \return VAStatus
//! VA_STATUS_SUCCESS if success, else fail reason
//!
VAStatus DdiMedia_PutSurfaceLinuxSW(
VADriverContextP ctx,
VASurfaceID surface,
void* draw, /* Drawable of window system */
int16_t srcx,
int16_t srcy,
uint16_t srcw,
uint16_t srch,
int16_t destx,
int16_t desty,
uint16_t destw,
uint16_t desth,
VARectangle *cliprects, /* client supplied clip list */
uint32_t number_cliprects, /* number of clip rects in the clip list */
uint32_t flags /* de-interlacing flags */
);
//! \brief Ddi codec put surface dummy
//!
//! \param ctx
//! Pointer to VA driver context
//! \param surface
//! VA surface ID
//! \param draw
//! Drawable of window system
//! \param srcx
//! Source X of the region
//! \param srcy
//! Source Y of the region
//! \param srcw
//! Source W of the region
//! \param srch
//! Source H of the region
//! \param destx
//! Destination X
//! \param desty
//! Destination Y
//! \param destw
//! Destination W
//! \param desth
//! Destination H
//! \param cliprects
//! Client-supplied clip list
//! \param number_cliprects
//! Number of clip rects in the clip list
//! \param flags
//! De-interlacing flags
//!
//! \return VAStatus
//! VA_STATUS_SUCCESS if success, else fail reason
//!
VAStatus DdiMedia_PutSurfaceDummy(
VADriverContextP ctx,
VASurfaceID surface,
void *draw, /* Drawable of window system */
int16_t srcx,
int16_t srcy,
uint16_t srcw,
uint16_t srch,
int16_t destx,
int16_t desty,
uint16_t destw,
uint16_t desth,
VARectangle *cliprects, /* client supplied clip list */
uint32_t number_cliprects, /* number of clip rects in the clip list */
uint32_t flags /* de-interlacing flags */
);
#endif
#endif
|