5 #include "cl_dyntexture.h"
7 // yields DYNAMIC_TEXTURE_PATH_PREFIX CLVIDEOPREFIX video name for a path
8 #define CLVIDEOPREFIX CLDYNTEXTUREPREFIX "video/"
9 #define CLTHRESHOLD 2.0
13 typedef enum clvideostate_e
20 CLVIDEO_RESETONWAKEUP,
24 typedef struct clvideo_s
40 // if a video is suspended, it is automatically paused (else we'd still have to process the frames)
42 // used to determine whether the video's resources should be freed or not
44 // when lasttime - realtime > THRESHOLD, all but the stream is freed
47 char filename[MAX_QPATH];
50 clvideo_t* CL_OpenVideo( const char *filename, const char *name, int owner );
51 clvideo_t* CL_GetVideoByName( const char *name );
52 void CL_SetVideoState( clvideo_t *video, clvideostate_t state );
53 void CL_RestartVideo( clvideo_t *video );
55 void CL_CloseVideo( clvideo_t * video );
56 void CL_PurgeOwner( int owner );
58 void CL_Video_Frame( void ); // update all videos
59 void CL_Video_Init( void );
60 void CL_Video_Shutdown( void );
63 extern int cl_videoplaying;
65 void CL_DrawVideo( void );
66 void CL_VideoStart( char *filename );
67 void CL_VideoStop( void );
69 // new function used for fullscreen videos
70 // TODO: Andreas Kirsch: move this subsystem somewhere else (preferably host) since the cl_video system shouldnt do such work like managing key events..
71 void CL_Video_KeyEvent( int key, int ascii, qboolean down );