diff options
Diffstat (limited to 'video.h')
-rw-r--r-- | video.h | 62 |
1 files changed, 0 insertions, 62 deletions
diff --git a/video.h b/video.h deleted file mode 100644 index 246dc87..0000000 --- a/video.h +++ /dev/null @@ -1,62 +0,0 @@ -/// -/// @file video.h @brief Video module header file -/// -/// Copyright (c) 2012 by Johns. All Rights Reserved. -/// -/// Contributor(s): -/// -/// License: AGPLv3 -/// -/// This program is free software: you can redistribute it and/or modify -/// it under the terms of the GNU Affero General Public License as -/// published by the Free Software Foundation, either version 3 of the -/// License. -/// -/// This program is distributed in the hope that it will be useful, -/// but WITHOUT ANY WARRANTY; without even the implied warranty of -/// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the -/// GNU Affero General Public License for more details. -/// -/// $Id: bc7bb8f7e869de413ebadbe58e4af1b603b6531e $ -////////////////////////////////////////////////////////////////////////////// - -/// @addtogroup Video -/// @{ - - /// C callback feed key press -extern void FeedKeyPress(const char *, const char *, int, int); - - /// Show window. -extern void VideoWindowShow(void); - - /// Hide window. -extern void VideoWindowHide(void); - - /// Clear window. -extern void VideoWindowClear(void); - - /// Poll video events. -extern void VideoPollEvents(int); - - /// Get player window id. -extern int VideoGetPlayWindow(void); - - /// Set Osd 3D Mode -extern void VideoSetOsd3DMode(int); - - /// Draw an OSD ARGB image. -extern void VideoDrawARGB(int, int, int, int, const uint8_t *); - - /// Get OSD size. -extern void VideoGetOsdSize(int *, int *); - - /// Set video geometry. -extern void VideoSetGeometry(const char *); - - /// Set video color key. -extern void VideoSetColorKey(uint32_t); - -extern int VideoInit(const char *); ///< Setup video module. -extern void VideoExit(void); ///< Cleanup and exit video module. - -/// @} |