Added support for EnhancedAC3

This commit is contained in:
schmirl 2010-04-19 10:17:33 +00:00
parent 8a128f7c57
commit 6f984b87e3
3 changed files with 5 additions and 0 deletions

View File

@ -142,3 +142,6 @@ sk8ter
lhanisch
for fixing a memory leak in cStreamdevPatFilter::GetPid
Eric Valette
for adding support for EnhancedAC3

View File

@ -1,6 +1,7 @@
VDR Plugin 'streamdev' Revision History
---------------------------------------
- added support for EnhancedAC3 (thanks to Eric Valette)
- fixed a memory leak in cStreamdevPatFilter::GetPid (thanks to lhanisch)
- length -1 is the correct value for streams in M3U playlists
- switching between two encrypted channels on the same transponder didn't

View File

@ -172,6 +172,7 @@ int cStreamdevPatFilter::GetPid(SI::PMT::Stream& stream)
for (SI::Loop::Iterator it; (d = stream.streamDescriptors.getNext(it)); ) {
switch (d->getDescriptorTag()) {
case SI::AC3DescriptorTag:
case SI::EnhancedAC3DescriptorTag:
Dprintf("cStreamdevPatFilter PMT scanner: adding PID %d (%s) %s\n",
stream.getPid(), psStreamTypes[stream.getStreamType()], "AC3");
delete d;