summaryrefslogtreecommitdiff
path: root/video.h
diff options
context:
space:
mode:
authorJohns <johns98@gmx.net>2012-03-31 21:27:54 +0200
committerJohns <johns98@gmx.net>2012-03-31 21:27:54 +0200
commitc9b344a3fd9d4bdb1aecc805336c4ccf479b0c49 (patch)
tree4b132619ed3feec789195e2fc26d4aaac3a93cb7 /video.h
parentb41f934c3707bcd3f31b794c1a7aba5c9ccb32f1 (diff)
downloadvdr-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.h9
1 files changed, 8 insertions, 1 deletions
diff --git a/video.h b/video.h
index c370ee0..c196c64 100644
--- a/video.h
+++ b/video.h
@@ -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);