diff options
author | Johns <johns98@gmx.net> | 2013-01-04 15:56:26 +0100 |
---|---|---|
committer | Johns <johns98@gmx.net> | 2013-01-04 15:56:26 +0100 |
commit | 78100cba002cc3da018af5717813f599f97c2630 (patch) | |
tree | 6c3fdbcfdaf6a26e58512c7bd0afc549d9ba8724 /softhddev.h | |
parent | b54ddd454961fa1f3d71d3488a90a1d27edef234 (diff) | |
download | vdr-plugin-softhddevice-78100cba002cc3da018af5717813f599f97c2630.tar.gz vdr-plugin-softhddevice-78100cba002cc3da018af5717813f599f97c2630.tar.bz2 |
Use second stream for PIP.
Diffstat (limited to 'softhddev.h')
-rw-r--r-- | softhddev.h | 9 |
1 files changed, 7 insertions, 2 deletions
diff --git a/softhddev.h b/softhddev.h index 564dcba..4075fbd 100644 --- a/softhddev.h +++ b/softhddev.h @@ -44,8 +44,6 @@ extern "C" /// C plugin play video packet extern int PlayVideo(const uint8_t *, int); - /// C plugin play video packet (next version) - extern int PlayVideo2(const uint8_t *, int); /// C plugin play TS video packet extern void PlayTsVideo(const uint8_t *, int); /// C plugin grab an image @@ -99,6 +97,13 @@ extern "C" extern void GetStats(int *, int *, int *, int *); /// C plugin scale video extern void ScaleVideo(int, int, int, int); + + /// Pip start + extern void PipStart(int, int, int, int, int, int, int, int); + /// Pip stop + extern void PipStop(void); + /// Pip play video packet + extern int PipPlayVideo(const uint8_t *, int); #ifdef __cplusplus } #endif |