aboutsummaryrefslogtreecommitdiff
path: root/lib/service
diff options
context:
space:
mode:
authorghost <andreas.monzner@multimedia-labs.de>2010-11-24 23:09:52 +0100
committerghost <andreas.monzner@multimedia-labs.de>2010-11-24 23:09:52 +0100
commit266943db269293b00a9f2b59338b81cca5a928be (patch)
treebe989e8a0ced32c5272b86340aad1fcd0afa0a57 /lib/service
parent8682ee11e24311ae3ae84665cd2da0075a0cf413 (diff)
downloadenigma2-266943db269293b00a9f2b59338b81cca5a928be.tar.gz
enigma2-266943db269293b00a9f2b59338b81cca5a928be.zip
add DTS-HD as known audio format, add detection to pmt parser (no hardware support for DTS-HD yet)
Diffstat (limited to 'lib/service')
-rw-r--r--lib/service/servicedvb.cpp2
1 files changed, 2 insertions, 0 deletions
diff --git a/lib/service/servicedvb.cpp b/lib/service/servicedvb.cpp
index 0d617c30..0a2146db 100644
--- a/lib/service/servicedvb.cpp
+++ b/lib/service/servicedvb.cpp
@@ -1797,6 +1797,8 @@ RESULT eDVBServicePlay::getTrackInfo(struct iAudioTrackInfo &info, unsigned int
info.m_description = "AAC-HE";
else if (program.audioStreams[i].type == eDVBServicePMTHandler::audioStream::atDTS)
info.m_description = "DTS";
+ else if (program.audioStreams[i].type == eDVBServicePMTHandler::audioStream::atDTSHD)
+ info.m_description = "DTS-HD";
else
info.m_description = "???";