Commit 0f86c944 authored by Jean-Baptiste Kempf's avatar Jean-Baptiste Kempf

Map TDSC avcodec

parent 9efb8686
...@@ -31,6 +31,7 @@ Decoder: ...@@ -31,6 +31,7 @@ Decoder:
* New BPG decoder based on libbpg * New BPG decoder based on libbpg
* Fixed uncompressed DVD-Audio (AOB) LPCM decoding * Fixed uncompressed DVD-Audio (AOB) LPCM decoding
* Rewrite WPL playlists and add ZPL playlists support (Zune) * Rewrite WPL playlists and add ZPL playlists support (Zune)
* Support TDSC
Demuxers: Demuxers:
* Support HD-DVD .evo (H.264, VC-1, MPEG-2, PCM, AC-3, E-AC3, MLP, DTS) * Support HD-DVD .evo (H.264, VC-1, MPEG-2, PCM, AC-3, E-AC3, MLP, DTS)
......
...@@ -262,6 +262,10 @@ static const struct ...@@ -262,6 +262,10 @@ static const struct
{ VLC_CODEC_VP7 , AV_CODEC_ID_VP7, VIDEO_ES }, { VLC_CODEC_VP7 , AV_CODEC_ID_VP7, VIDEO_ES },
#endif #endif
#if LIBAVCODEC_VERSION_CHECK( 56, 18, 0, 27, 100 )
{ VLC_CODEC_TDSC, AV_CODEC_ID_TDSC, VIDEO_ES },
#endif
/* ffmpeg only: AV_CODEC_ID_BRENDER_PIX */ /* ffmpeg only: AV_CODEC_ID_BRENDER_PIX */
/* ffmpeg only: AV_CODEC_ID_Y41P */ /* ffmpeg only: AV_CODEC_ID_Y41P */
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment