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

@@ -19,10 +19,10 @@ class cPlayback
int mSubtitleStream;
int mDvbsubtitleStream;
int mTeletextStream;
void (*framebuffer_callback)(unsigned char **, unsigned int *, unsigned int *, unsigned int *, int *, void (**)(void));
void (*framebuffer_callback)(uint32_t **, unsigned int *, unsigned int *, unsigned int *, int *, void (**)(void));
bool Stop(void);
public:
cPlayback(int num = 0, void (*fbcb)(unsigned char **, unsigned int *, unsigned int *, unsigned int *, int *, void (**)(void)) = NULL);
cPlayback(int num = 0, void (*fbcb)(uint32_t **, unsigned int *, unsigned int *, unsigned int *, int *, void (**)(void)) = NULL);
~cPlayback();
bool Open(playmode_t PlayMode);