summaryrefslogtreecommitdiff
path: root/client/player.h
diff options
context:
space:
mode:
Diffstat (limited to 'client/player.h')
-rw-r--r--client/player.h7
1 files changed, 4 insertions, 3 deletions
diff --git a/client/player.h b/client/player.h
index abceb9d..24920a5 100644
--- a/client/player.h
+++ b/client/player.h
@@ -37,18 +37,19 @@
class Player : public QThread
{
public:
- Player(VideoWidget *video);
+ Player(VideoWidget *widget);
~Player();
void run();
private:
+ VideoWidget *widget;
+
Display *display;
Drawable drawable;
GC gc;
XvPortID port;
-
- VideoWidget *video;
+ XGCValues values;
};
#endif/*__MIAV_PLAYER_H__*/