decoder/Mp4v2: add MP4v2 decoder plugin

This plugin uses the MP4v2 library to play mp4/m4a files.
It is limited to file_decode.
This commit is contained in:
Andrée Ekroth
2014-08-07 19:52:56 +02:00
parent bbea6564fc
commit 330b6a0482
7 changed files with 392 additions and 0 deletions

View File

@@ -37,6 +37,7 @@
#include "plugins/MadDecoderPlugin.hxx"
#include "plugins/SndfileDecoderPlugin.hxx"
#include "plugins/Mpg123DecoderPlugin.hxx"
#include "plugins/Mp4v2DecoderPlugin.hxx"
#include "plugins/WildmidiDecoderPlugin.hxx"
#include "plugins/MikmodDecoderPlugin.hxx"
#include "plugins/ModplugDecoderPlugin.hxx"
@@ -54,6 +55,9 @@ const struct DecoderPlugin *const decoder_plugins[] = {
#ifdef HAVE_MPG123
&mpg123_decoder_plugin,
#endif
#ifdef HAVE_MP4V2
&mp4v2_decoder_plugin,
#endif
#ifdef ENABLE_VORBIS_DECODER
&vorbis_decoder_plugin,
#endif