summaryrefslogtreecommitdiff
path: root/video.h
diff options
context:
space:
mode:
authorchriszero <zerov83@gmail.com>2015-01-11 15:14:03 +0100
committerchriszero <zerov83@gmail.com>2015-01-11 15:14:03 +0100
commit508ba3458094f0c30b278cc05abc626b6f3940e0 (patch)
tree12592e3fb841f80ad1c61d07b3f9242ad94d2cbe /video.h
parenta9dd0c6a322f139e03a0ba4570e2a78508ddd6c3 (diff)
downloadvdr-plugin-plex-508ba3458094f0c30b278cc05abc626b6f3940e0.tar.gz
vdr-plugin-plex-508ba3458094f0c30b278cc05abc626b6f3940e0.tar.bz2
Removed Mplayer support.
Added HLS Streaming Player for directly play in VDR
Diffstat (limited to 'video.h')
-rw-r--r--video.h62
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.
-
-/// @}