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 /types.h | |
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 'types.h')
-rw-r--r-- | types.h | 4 |
1 files changed, 2 insertions, 2 deletions
@@ -17,7 +17,7 @@ public: eAC3, eEAC3, eAAC, - eDTS, + eADTS, eNumCodecs, eInvalid }; @@ -28,7 +28,7 @@ public: (codec == eAC3) ? "AC3" : (codec == eEAC3) ? "E-AC3" : (codec == eAAC) ? "AAC" : - (codec == eDTS) ? "DTS" : "unknown"; + (codec == eADTS) ? "ADTS" : "unknown"; } }; |