Commit 2e90c949 authored by Jean-Baptiste Kempf's avatar Jean-Baptiste Kempf

Support WMA Lossless with recent enough libavcodec

(cherry picked from commit bc368cb418feb3c5ce8a1afd1699cad3fbf00acf)
Signed-off-by: default avatarJean-Baptiste Kempf <jb@videolan.org>
parent 714534bb
...@@ -397,6 +397,10 @@ static const struct ...@@ -397,6 +397,10 @@ static const struct
{ VLC_CODEC_TRUEHD, CODEC_ID_TRUEHD, AUDIO_ES }, { VLC_CODEC_TRUEHD, CODEC_ID_TRUEHD, AUDIO_ES },
{ VLC_CODEC_MLP, CODEC_ID_MLP, AUDIO_ES }, { VLC_CODEC_MLP, CODEC_ID_MLP, AUDIO_ES },
#if LIBAVCODEC_VERSION_INT >= AV_VERSION_INT( 54, 5, 0 )
{ VLC_CODEC_WMAL, CODEC_ID_WMALOSSLESS, AUDIO_ES },
#endif
/* PCM */ /* PCM */
{ VLC_CODEC_S8, CODEC_ID_PCM_S8, AUDIO_ES }, { VLC_CODEC_S8, CODEC_ID_PCM_S8, AUDIO_ES },
......
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