generic-pc: remove unused stuff from playback.h header

This commit is contained in:
Stefan Seyfried
2013-11-01 20:47:31 +01:00
parent cc973092ed
commit 9563559afb
2 changed files with 3 additions and 3 deletions

View File

@@ -34,7 +34,7 @@ bool cPlayback::SelectSubtitles(int pid)
bool cPlayback::SetSpeed(int speed) bool cPlayback::SetSpeed(int speed)
{ {
printf("%s:%s playing %d speed %d\n", FILENAME, __func__, playing, speed); printf("%s:%s speed %d\n", FILENAME, __func__, speed);
return true; return true;
} }

View File

@@ -12,8 +12,6 @@ typedef enum {
class cPlayback class cPlayback
{ {
private:
bool playing;
public: public:
bool Open(playmode_t PlayMode); bool Open(playmode_t PlayMode);
void Close(void); void Close(void);
@@ -32,6 +30,8 @@ class cPlayback
// //
cPlayback(int num = 0); cPlayback(int num = 0);
~cPlayback(); ~cPlayback();
private:
void *pdata; /* not yet used */
}; };
#endif #endif