Commit 2b101ff4 authored by Hugues Fruchet's avatar Hugues Fruchet Committed by Rafaël Carré

omxil: enable support of mp3, vorbis and wma

Update audio_format_table to allow selection of OMX
components which support mp3, vorbis or wma role.
Signed-off-by: default avatarRafaël Carré <funman@videolan.org>
parent bf1d561f
......@@ -299,6 +299,13 @@ static const struct
{ VLC_CODEC_AMR_WB, OMX_AUDIO_CodingAMR, "audio_decoder.amr" },
{ VLC_CODEC_MP4A, OMX_AUDIO_CodingAAC, "audio_decoder.aac" },
{ VLC_CODEC_S16N, OMX_AUDIO_CodingPCM, "audio_decoder.pcm" },
{ VLC_CODEC_MP3, OMX_AUDIO_CodingMP3, "audio_decoder.mp3" },
{ VLC_CODEC_MPGA, OMX_AUDIO_CodingMP3, "audio_decoder.mp3" },
{ VLC_CODEC_VORBIS, OMX_AUDIO_CodingVORBIS, "audio_decoder.vorbis" },
{ VLC_CODEC_WMA1, OMX_AUDIO_CodingWMA, "audio_decoder.wma" },
{ VLC_CODEC_WMA2, OMX_AUDIO_CodingWMA, "audio_decoder.wma" },
{ VLC_CODEC_WMAP, OMX_AUDIO_CodingWMA, "audio_decoder.wma" },
{ VLC_CODEC_WMAL, OMX_AUDIO_CodingWMA, "audio_decoder.wma" },
{ 0, 0, 0 }
};
......
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