diff options
author | Johns <johns98@gmx.net> | 2012-03-31 21:27:54 +0200 |
---|---|---|
committer | Johns <johns98@gmx.net> | 2012-03-31 21:27:54 +0200 |
commit | c9b344a3fd9d4bdb1aecc805336c4ccf479b0c49 (patch) | |
tree | 4b132619ed3feec789195e2fc26d4aaac3a93cb7 /video.h | |
parent | b41f934c3707bcd3f31b794c1a7aba5c9ccb32f1 (diff) | |
download | vdr-plugin-softhddevice-c9b344a3fd9d4bdb1aecc805336c4ccf479b0c49.tar.gz vdr-plugin-softhddevice-c9b344a3fd9d4bdb1aecc805336c4ccf479b0c49.tar.bz2 |
Audio/Video sync rewrite.
Trick-speed support moved to video module.
Reduce video messages.
Diffstat (limited to 'video.h')
-rw-r--r-- | video.h | 9 |
1 files changed, 8 insertions, 1 deletions
@@ -146,7 +146,14 @@ extern void VideoOsdDrawARGB(int, int, int, int, const uint8_t *); /// Get OSD size. extern void VideoGetOsdSize(int *, int *); -extern int64_t VideoGetClock(void); ///< Get video clock. + /// Set video clock. +extern void VideoSetClock(VideoHwDecoder *, int64_t); + + /// Get video clock. +extern int64_t VideoGetClock(const VideoHwDecoder *); + + /// Set trick play speed. +extern void VideoSetTrickSpeed(VideoHwDecoder *, int); /// Grab screen. extern uint8_t *VideoGrab(int *, int *, int *, int); |