diff options
author | Johns <johns98@gmx.net> | 2011-12-19 17:03:40 +0100 |
---|---|---|
committer | Johns <johns98@gmx.net> | 2011-12-19 17:11:25 +0100 |
commit | 36b285b5f7351836f0ad6a364c3d4743549a99c7 (patch) | |
tree | 514d88c4eddc836b83cf7be4042f374ea08b910d /video.h | |
parent | 33460f1370b24bae464201e08bbc7bea26f98129 (diff) | |
download | vdr-plugin-softhddevice-36b285b5f7351836f0ad6a364c3d4743549a99c7.tar.gz vdr-plugin-softhddevice-36b285b5f7351836f0ad6a364c3d4743549a99c7.tar.bz2 |
Audio/video sync improvements.
Configurable audio delay.
Use monotonic pts.
Support old libav or ffmpeg libraries.
Diffstat (limited to 'video.h')
-rw-r--r-- | video.h | 6 |
1 files changed, 6 insertions, 0 deletions
@@ -65,6 +65,9 @@ extern enum PixelFormat Video_get_format(VideoHwDecoder *, AVCodecContext *, /// Display video TEST extern void VideoDisplayHandler(void); + /// Poll video events +extern void VideoPollEvent(void); + /// set video mode //extern void VideoSetVideoMode(int, int, int, int); @@ -77,6 +80,9 @@ extern void VideoSetDeinterlace(int); /// set scaling extern void VideoSetScaling(int); + /// set audio delay +extern void VideoSetAudioDelay(int); + /// Clear OSD extern void VideoOsdClear(void); |