libeplayer3: use uint32_t for frame buffer access

This commit is contained in:
martii
2013-07-27 11:17:49 +02:00
committed by Stefan Seyfried
parent 9f27e84225
commit 8e0c61ead0
5 changed files with 95 additions and 110 deletions

View File

@@ -103,14 +103,13 @@ static int readPointer = 0;
static int writePointer = 0;
static int hasThreadStarted = 0;
static int isSubtitleOpened = 0;
static int screen_width = 0;
static int screen_height = 0;
static int destStride = 0;
static int shareFramebuffer = 0;
static int framebufferFD = -1;
static void (*framebufferBlit) = NULL;
static unsigned char* destination = NULL;
static int screen_width = 0;
static int screen_height = 0;
static int destStride = 0;
static int shareFramebuffer = 0;
static int framebufferFD = -1;
static void (*framebufferBlit) = NULL;
static uint32_t *destination = NULL;
/* ***************************** */
/* Prototypes */