diff options
author | Thomas Reufer <thomas@reufer.ch> | 2014-01-07 16:34:03 +0100 |
---|---|---|
committer | Thomas Reufer <thomas@reufer.ch> | 2014-01-07 16:34:03 +0100 |
commit | 2741f31236bfbe2087095af7320183cf863ae02e (patch) | |
tree | 10c84e913043b4dce9f7fde4cf0527850504042f /setup.c | |
parent | dd9fbf38610934623869728d1b00904d15783480 (diff) | |
download | vdr-plugin-rpihddevice-0.0.6.tar.gz vdr-plugin-rpihddevice-0.0.6.tar.bz2 |
2013-12-15: Version 0.0.60.0.6
-------------------------
- new:
- still picture
- trick speeds
- fixed:
- reworked audio detection and decoding, fixed several issues
- reworked stream starting behavior, fixed audio-/video-only play back
- fixed several issues with unsupported video codec (e.g. without MPEG2 key)
- improved fast forward/reverse mode
- several minor bugfixes
- missing:
- deinterlacer
- image grabbing
- video format/output options
Diffstat (limited to 'setup.c')
-rw-r--r-- | setup.c | 3 |
1 files changed, 1 insertions, 2 deletions
@@ -115,7 +115,7 @@ bool cRpiSetup::IsAudioFormatSupported(cAudioCodec::eCodec codec, { // AAC and DTS pass-through currently not supported if (codec == cAudioCodec::eAAC || - codec == cAudioCodec::eDTS) + codec == cAudioCodec::eADTS) return false; if (vc_tv_hdmi_audio_supported( @@ -123,7 +123,6 @@ bool cRpiSetup::IsAudioFormatSupported(cAudioCodec::eCodec codec, codec == cAudioCodec::eAC3 ? EDID_AudioFormat_eAC3 : codec == cAudioCodec::eEAC3 ? EDID_AudioFormat_eEAC3 : codec == cAudioCodec::eAAC ? EDID_AudioFormat_eAAC : - codec == cAudioCodec::eDTS ? EDID_AudioFormat_eDTS : EDID_AudioFormat_ePCM, channels, samplingRate == 32000 ? EDID_AudioSampleRate_e32KHz : samplingRate == 44000 ? EDID_AudioSampleRate_e44KHz : |