Subversion Repositories Kolibri OS

Compare Revisions

Regard whitespace Rev 5365 → Rev 5366

/contrib/sdk/sources/vaapi/libva-1.4.1/test/common/va_display_drm.c
32,32 → 32,22
#endif
#include "va_display.h"
 
static int drm_fd = -1;
static int drm_fd = 0;
 
static VADisplay
va_open_display_drm(void)
{
VADisplay va_dpy;
int i;
 
static const char *drm_device_paths[] = {
"/dev/dri/renderD128",
"/dev/dri/card0",
NULL
};
drm_fd = get_service("DISPLAY");
if (drm_fd == 0)
return NULL;
 
for (i = 0; drm_device_paths[i]; i++) {
drm_fd = open(drm_device_paths[i], O_RDWR);
if (drm_fd < 0)
continue;
 
va_dpy = vaGetDisplayDRM(drm_fd);
if (va_dpy)
return va_dpy;
 
close(drm_fd);
drm_fd = -1;
}
drm_fd = 0;
return NULL;
}
 
64,11 → 54,7
static void
va_close_display_drm(VADisplay va_dpy)
{
if (drm_fd < 0)
return;
 
close(drm_fd);
drm_fd = -1;
drm_fd = 0;
}