blob: c6449596fe7de327df027894aa6f0fd5117812b5 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
|
///
/// @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$
//////////////////////////////////////////////////////////////////////////////
/// @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);
/// 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.
/// @}
|