libeplayer3: use uint32_t for frame buffer access

This commit is contained in:
martii
2013-07-27 11:17:49 +02:00
parent cf5687bc37
commit b64bdcb370
7 changed files with 98 additions and 113 deletions

View File

@@ -2,6 +2,7 @@
#define WRITER_H_
#include <stdio.h>
#include <stdint.h>
typedef enum { eNone, eAudio, eVideo, eGfx} eWriterType_t;
@@ -33,7 +34,7 @@ typedef struct {
int fd;
unsigned int Screen_Width;
unsigned int Screen_Height;
unsigned char* destination;
uint32_t *destination;
unsigned int destStride;
} WriterFBCallData_t;