Commit bed5264a authored by Laurent Aimar's avatar Laurent Aimar

Let ffmpeg handle APE codec (Monkey's Audio) as it seems to "work" with the

ffmpeg demuxer (I am not sure seeking works alright). 
parent 4931a926
......@@ -1436,7 +1436,10 @@ static struct
{ VLC_FOURCC('N','E','L','L'), CODEC_ID_NELLYMOSER,
AUDIO_ES, "NellyMoser ASAO" },
#endif
#if LIBAVCODEC_VERSION_INT >= ((51<<16)+(44<<8)+0)
{ VLC_FOURCC('A','P','E',' '), CODEC_ID_APE,
AUDIO_ES, "Monkey's Audio" },
#endif
/* PCM */
{ VLC_FOURCC('s','8',' ',' '), CODEC_ID_PCM_S8,
AUDIO_ES, "PCM S8" },
......
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