diff options
-rw-r--r-- | xbmc/cores/paplayer/VideoPlayerCodec.cpp | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/xbmc/cores/paplayer/VideoPlayerCodec.cpp b/xbmc/cores/paplayer/VideoPlayerCodec.cpp index 84a8b97fe2..81993ca653 100644 --- a/xbmc/cores/paplayer/VideoPlayerCodec.cpp +++ b/xbmc/cores/paplayer/VideoPlayerCodec.cpp @@ -514,6 +514,11 @@ CAEStreamInfo::DataType VideoPlayerCodec::GetPassthroughStreamType(AVCodecID cod format.m_streamInfo.m_sampleRate = samplerate; break; + case AV_CODEC_ID_TRUEHD: + format.m_streamInfo.m_type = CAEStreamInfo::STREAM_TYPE_TRUEHD; + format.m_streamInfo.m_sampleRate = samplerate; + break; + default: format.m_streamInfo.m_type = CAEStreamInfo::STREAM_TYPE_NULL; } |