libeplayer3/subtitles/spark: use backbuffer and blit

This commit is contained in:
martii
2013-07-27 08:12:03 +02:00
parent 441f337b48
commit 84b264ad87
5 changed files with 29 additions and 62 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 (*framebuffer_callback)(unsigned char **, 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 *) = NULL);
cPlayback(int num = 0, void (*fbcb)(unsigned char **, unsigned int *, unsigned int *, unsigned int *, int *, void (**)(void)) = NULL);
~cPlayback();
bool Open(playmode_t PlayMode);