Theora Playback Library  1.1.0
TheoraWorkerThread.h
Go to the documentation of this file.
1 /************************************************************************************
2 This source file is part of the Theora Video Playback Library
3 For latest info, see http://libtheoraplayer.googlecode.com
4 *************************************************************************************
5 Copyright (c) 2008-2014 Kresimir Spes (kspes@cateia.com)
6 This program is free software; you can redistribute it and/or modify it under
7 the terms of the BSD license: http://opensource.org/licenses/BSD-3-Clause
8 *************************************************************************************/
9 #ifndef _TheoraWorkerThread_h
10 #define _TheoraWorkerThread_h
11 
12 #include "TheoraAsync.h"
13 
14 class TheoraVideoClip;
15 
21 {
22  TheoraVideoClip* mClip;
23 public:
26 
27  TheoraVideoClip* getAssignedClip() { return mClip; }
28 
30  void execute();
31 };
32 #endif
Definition: TheoraAsync.h:46
void execute()
Main Thread Body - do not call directly!
Definition: TheoraVideoClip.h:61
TheoraVideoClip * getAssignedClip()
Definition: TheoraWorkerThread.h:27
Definition: TheoraWorkerThread.h:20