va_x11.c 7.36 KB
Newer Older
Austin Yuan's avatar
Austin Yuan committed
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24
/*
 * Copyright (c) 2007 Intel Corporation. All Rights Reserved.
 *
 * 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, sub license, 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 (including the
 * next paragraph) 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 NON-INFRINGEMENT.
 * IN NO EVENT SHALL PRECISION INSIGHT AND/OR ITS SUPPLIERS 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.
 */

Gwenole Beauchesne's avatar
Gwenole Beauchesne committed
25
#define _GNU_SOURCE 1
Austin Yuan's avatar
Austin Yuan committed
26 27 28 29 30 31
#include "config.h"
#include "va.h"
#include "va_backend.h"
#include "va_x11.h"
#include "va_dri.h"
#include "va_dri2.h"
32
#include "va_dricommon.h"
33
#include "va_nvctrl.h"
Gwenole Beauchesne's avatar
Gwenole Beauchesne committed
34
#include "va_fglrx.h"
Austin Yuan's avatar
Austin Yuan committed
35
#include <stdio.h>
36
#include <stdlib.h>
Austin Yuan's avatar
Austin Yuan committed
37 38
#include <stdarg.h>
#include <string.h>
Gwenole Beauchesne's avatar
Gwenole Beauchesne committed
39
#include <unistd.h>
Austin Yuan's avatar
Austin Yuan committed
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
#include <sys/types.h>
#include <sys/stat.h>
#include <fcntl.h>
#include <errno.h>

static VADisplayContextP pDisplayContexts = NULL;

static int va_DisplayContextIsValid (
    VADisplayContextP pDisplayContext
)
{
    VADisplayContextP ctx = pDisplayContexts;

    while (ctx)
    {
	if (ctx == pDisplayContext && pDisplayContext->pDriverContext)
	    return 1;
	ctx = ctx->pNext;
    }
    return 0;
}

static void va_DisplayContextDestroy (
    VADisplayContextP pDisplayContext
)
{
    VADisplayContextP *ctx = &pDisplayContexts;

    /* Throw away pDisplayContext */
    while (*ctx)
    {
	if (*ctx == pDisplayContext)
	{
	    *ctx = pDisplayContext->pNext;
	    pDisplayContext->pNext = NULL;
	    break;
	}
	ctx = &((*ctx)->pNext);
    }
79
    free(pDisplayContext->pDriverContext->dri_state);
Austin Yuan's avatar
Austin Yuan committed
80 81 82 83 84 85 86 87 88 89 90 91
    free(pDisplayContext->pDriverContext);
    free(pDisplayContext);
}


static VAStatus va_DRI2GetDriverName (
    VADisplayContextP pDisplayContext,
    char **driver_name
)
{
    VADriverContextP ctx = pDisplayContext->pDriverContext;

92
    if (!isDRI2Connected(ctx, driver_name))
Austin Yuan's avatar
Austin Yuan committed
93 94 95 96 97 98 99 100 101 102 103
        return VA_STATUS_ERROR_UNKNOWN;

    return VA_STATUS_SUCCESS;
}

static VAStatus va_DRIGetDriverName (
    VADisplayContextP pDisplayContext,
    char **driver_name
)
{
    VADriverContextP ctx = pDisplayContext->pDriverContext;
104 105

    if (!isDRI1Connected(ctx, driver_name))
Austin Yuan's avatar
Austin Yuan committed
106 107
        return VA_STATUS_ERROR_UNKNOWN;

108
    return VA_STATUS_SUCCESS;
Austin Yuan's avatar
Austin Yuan committed
109 110
}

111 112 113 114 115 116
static VAStatus va_NVCTRL_GetDriverName (
    VADisplayContextP pDisplayContext,
    char **driver_name
)
{
    VADriverContextP ctx = pDisplayContext->pDriverContext;
117 118 119
    int direct_capable, driver_major, driver_minor, driver_patch;
    Bool result;

120
    result = VA_NVCTRLQueryDirectRenderingCapable((Display *)ctx->native_dpy, ctx->x11_screen,
121 122 123 124
                                                  &direct_capable);
    if (!result || !direct_capable)
        return VA_STATUS_ERROR_UNKNOWN;

125
    result = VA_NVCTRLGetClientDriverName((Display *)ctx->native_dpy, ctx->x11_screen,
126 127 128 129 130 131
                                          &driver_major, &driver_minor,
                                          &driver_patch, driver_name);
    if (!result)
        return VA_STATUS_ERROR_UNKNOWN;

    return VA_STATUS_SUCCESS;
132 133
}

Gwenole Beauchesne's avatar
Gwenole Beauchesne committed
134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151
static VAStatus va_FGLRX_GetDriverName (
    VADisplayContextP pDisplayContext,
    char **driver_name
)
{
    VADriverContextP ctx = pDisplayContext->pDriverContext;
    int driver_major, driver_minor, driver_patch;
    Bool result;

    result = VA_FGLRXGetClientDriverName(ctx->native_dpy, ctx->x11_screen,
                                         &driver_major, &driver_minor,
                                         &driver_patch, driver_name);
    if (!result)
        return VA_STATUS_ERROR_UNKNOWN;

    return VA_STATUS_SUCCESS;
}

Austin Yuan's avatar
Austin Yuan committed
152 153 154 155 156
static VAStatus va_DisplayContextGetDriverName (
    VADisplayContextP pDisplayContext,
    char **driver_name
)
{
157
    VAStatus vaStatus;
Austin Yuan's avatar
Austin Yuan committed
158 159 160 161

    if (driver_name)
	*driver_name = NULL;

162 163 164
    vaStatus = va_DRI2GetDriverName(pDisplayContext, driver_name);
    if (vaStatus != VA_STATUS_SUCCESS)
        vaStatus = va_DRIGetDriverName(pDisplayContext, driver_name);
165 166
    if (vaStatus != VA_STATUS_SUCCESS)
        vaStatus = va_NVCTRL_GetDriverName(pDisplayContext, driver_name);
Gwenole Beauchesne's avatar
Gwenole Beauchesne committed
167 168
    if (vaStatus != VA_STATUS_SUCCESS)
        vaStatus = va_FGLRX_GetDriverName(pDisplayContext, driver_name);
Austin Yuan's avatar
Austin Yuan committed
169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185
    return vaStatus;
}


VADisplay vaGetDisplay (
    Display *native_dpy /* implementation specific */
)
{
  VADisplay dpy = NULL;
  VADisplayContextP pDisplayContext = pDisplayContexts;

  if (!native_dpy)
      return NULL;

  while (pDisplayContext)
  {
      if (pDisplayContext->pDriverContext &&
186
	  pDisplayContext->pDriverContext->native_dpy == (void *)native_dpy)
Austin Yuan's avatar
Austin Yuan committed
187 188 189 190 191 192 193 194 195 196 197
      {
          dpy = (VADisplay)pDisplayContext;
          break;
      }
      pDisplayContext = pDisplayContext->pNext;
  }

  if (!dpy)
  {
      /* create new entry */
      VADriverContextP pDriverContext;
198
      struct dri_state *dri_state;
Austin Yuan's avatar
Austin Yuan committed
199 200
      pDisplayContext = calloc(1, sizeof(*pDisplayContext));
      pDriverContext  = calloc(1, sizeof(*pDriverContext));
201 202
      dri_state       = calloc(1, sizeof(*dri_state));
      if (pDisplayContext && pDriverContext && dri_state)
Austin Yuan's avatar
Austin Yuan committed
203
      {
204
	  pDisplayContext->vadpy_magic = VA_DISPLAY_MAGIC;          
205

206
	  pDriverContext->native_dpy       = (void *)native_dpy;
Austin Yuan's avatar
Austin Yuan committed
207 208 209 210 211
	  pDisplayContext->pNext           = pDisplayContexts;
	  pDisplayContext->pDriverContext  = pDriverContext;
	  pDisplayContext->vaIsValid       = va_DisplayContextIsValid;
	  pDisplayContext->vaDestroy       = va_DisplayContextDestroy;
	  pDisplayContext->vaGetDriverName = va_DisplayContextGetDriverName;
212
          pDisplayContext->opaque          = NULL;
Austin Yuan's avatar
Austin Yuan committed
213
	  pDisplayContexts                 = pDisplayContext;
214
	  pDriverContext->dri_state 	   = dri_state;
Austin Yuan's avatar
Austin Yuan committed
215 216 217 218 219 220 221 222
	  dpy                              = (VADisplay)pDisplayContext;
      }
      else
      {
	  if (pDisplayContext)
	      free(pDisplayContext);
	  if (pDriverContext)
	      free(pDriverContext);
223 224
          if (dri_state)
              free(dri_state);
Austin Yuan's avatar
Austin Yuan committed
225 226 227 228 229
      }
  }
  
  return dpy;
}
Austin Yuan's avatar
Austin Yuan committed
230

Austin Yuan's avatar
Austin Yuan committed
231 232 233
#define CTX(dpy) (((VADisplayContextP)dpy)->pDriverContext)
#define CHECK_DISPLAY(dpy) if( !vaDisplayIsValid(dpy) ) { return VA_STATUS_ERROR_INVALID_DISPLAY; }

Austin Yuan's avatar
Austin Yuan committed
234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251
VAStatus vaPutSurface (
    VADisplay dpy,
    VASurfaceID surface,
    Drawable draw, /* X Drawable */
    short srcx,
    short srcy,
    unsigned short srcw,
    unsigned short srch,
    short destx,
    short desty,
    unsigned short destw,
    unsigned short desth,
    VARectangle *cliprects, /* client supplied clip list */
    unsigned int number_cliprects, /* number of clip rects in the clip list */
    unsigned int flags /* de-interlacing flags */
)
{
  VADriverContextP ctx;
Austin Yuan's avatar
Austin Yuan committed
252

Austin Yuan's avatar
Austin Yuan committed
253 254 255
  CHECK_DISPLAY(dpy);
  ctx = CTX(dpy);

Austin Yuan's avatar
save  
Austin Yuan committed
256
  return ctx->vtable.vaPutSurface( ctx, surface, (void *)draw, srcx, srcy, srcw, srch,
Austin Yuan's avatar
Austin Yuan committed
257 258 259
                                   destx, desty, destw, desth,
                                   cliprects, number_cliprects, flags );
}