diff options
author | Johns <johns98@gmx.net> | 2012-02-21 20:55:28 +0100 |
---|---|---|
committer | Johns <johns98@gmx.net> | 2012-02-21 20:55:28 +0100 |
commit | 5d8dea1b6b9e15048f425f13b349e785a494cdb3 (patch) | |
tree | ac2fc34f5cff60e63b59fa8ed5bcd5d9f6a1d7fa /softhddev.h | |
parent | 1f232db5b499169e3c354b4af4bb59053009f210 (diff) | |
download | vdr-plugin-softhddevice-5d8dea1b6b9e15048f425f13b349e785a494cdb3.tar.gz vdr-plugin-softhddevice-5d8dea1b6b9e15048f425f13b349e785a494cdb3.tar.bz2 |
New audio PES handling.
New easier and more flexible audio PES packet parser, which includes own
codec parser.
Removed av_parser use.
Reduced audio buffer time, faster channel switch.
New audio transport stream parser (not enabled as default).
Diffstat (limited to 'softhddev.h')
-rw-r--r-- | softhddev.h | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/softhddev.h b/softhddev.h index 631cd56..573c37a 100644 --- a/softhddev.h +++ b/softhddev.h @@ -37,6 +37,8 @@ extern "C" /// C plugin play audio packet extern int PlayAudio(const uint8_t *, int, uint8_t); + /// C plugin play TS audio packet + extern int PlayTsAudio(const uint8_t *, int); /// C plugin set audio volume extern void SetVolumeDevice(int); |