libeplayer3: use uint32_t for frame buffer access

Origin commit data
------------------
Branch: master
Commit: b64bdcb370
Author: martii <m4rtii@gmx.de>
Date: 2013-07-27 (Sat, 27 Jul 2013)


------------------
No further description and justification available within origin commit message!

------------------
This commit was generated by Migit
This commit is contained in:
martii
2013-07-27 11:17:49 +02:00
parent 68ca55dc97
commit 6a0f006a0c
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;