diff options
author | Johns <johns98@gmx.net> | 2012-02-16 15:31:53 +0100 |
---|---|---|
committer | Johns <johns98@gmx.net> | 2012-02-16 15:31:53 +0100 |
commit | 852d3672252bd13b8337b1f28c05fa457a3f1b7f (patch) | |
tree | 2450cae54bb61dd38a0301783249d47f684dae0b /softhddev.h | |
parent | a7f0cf6d6f2d18c982a08695ca4363aa2a55693e (diff) | |
download | vdr-plugin-softhddevice-852d3672252bd13b8337b1f28c05fa457a3f1b7f.tar.gz vdr-plugin-softhddevice-852d3672252bd13b8337b1f28c05fa457a3f1b7f.tar.bz2 |
Adds trick speed support.
Diffstat (limited to 'softhddev.h')
-rw-r--r-- | softhddev.h | 6 |
1 files changed, 4 insertions, 2 deletions
diff --git a/softhddev.h b/softhddev.h index feb4a26..631cd56 100644 --- a/softhddev.h +++ b/softhddev.h @@ -37,8 +37,6 @@ extern "C" /// C plugin play audio packet extern int PlayAudio(const uint8_t *, int, uint8_t); - /// C plugin mute audio - extern void Mute(void); /// C plugin set audio volume extern void SetVolumeDevice(int); @@ -51,12 +49,16 @@ extern "C" /// C plugin set play mode extern void SetPlayMode(void); + /// C plugin set trick speed + extern void TrickSpeed(int); /// C plugin clears all video and audio data from the device extern void Clear(void); /// C plugin sets the device into play mode extern void Play(void); /// C plugin sets the device into "freeze frame" mode extern void Freeze(void); + /// C plugin mute audio + extern void Mute(void); /// C plugin display I-frame as a still picture. extern void StillPicture(const uint8_t *, int); /// C plugin poll if ready |