2 * audio decoder interface
4 * This file is part of MPlayer.
6 * MPlayer is free software; you can redistribute it and/or modify
7 * it under the terms of the GNU General Public License as published by
8 * the Free Software Foundation; either version 2 of the License, or
9 * (at your option) any later version.
11 * MPlayer is distributed in the hope that it will be useful,
12 * but WITHOUT ANY WARRANTY; without even the implied warranty of
13 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
14 * GNU General Public License for more details.
16 * You should have received a copy of the GNU General Public License along
17 * with MPlayer; if not, write to the Free Software Foundation, Inc.,
18 * 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.
27 #include "stream/stream.h"
28 #include "libmpdemux/demuxer.h"
29 #include "libmpdemux/stheader.h"
32 /* Missed vorbis, mad, dshow */
34 extern const ad_functions_t mpcodecs_ad_mpg123
;
35 extern const ad_functions_t mpcodecs_ad_mp3lib
;
36 extern const ad_functions_t mpcodecs_ad_ffmpeg
;
37 extern const ad_functions_t mpcodecs_ad_liba52
;
38 extern const ad_functions_t mpcodecs_ad_hwac3
;
39 extern const ad_functions_t mpcodecs_ad_hwmpa
;
40 extern const ad_functions_t mpcodecs_ad_pcm
;
41 extern const ad_functions_t mpcodecs_ad_dvdpcm
;
42 extern const ad_functions_t mpcodecs_ad_alaw
;
43 extern const ad_functions_t mpcodecs_ad_imaadpcm
;
44 extern const ad_functions_t mpcodecs_ad_msadpcm
;
45 extern const ad_functions_t mpcodecs_ad_dk3adpcm
;
46 extern const ad_functions_t mpcodecs_ad_dk4adpcm
;
47 extern const ad_functions_t mpcodecs_ad_dshow
;
48 extern const ad_functions_t mpcodecs_ad_dmo
;
49 extern const ad_functions_t mpcodecs_ad_acm
;
50 extern const ad_functions_t mpcodecs_ad_faad
;
51 extern const ad_functions_t mpcodecs_ad_libvorbis
;
52 extern const ad_functions_t mpcodecs_ad_speex
;
53 extern const ad_functions_t mpcodecs_ad_libmad
;
54 extern const ad_functions_t mpcodecs_ad_realaud
;
55 extern const ad_functions_t mpcodecs_ad_libdv
;
56 extern const ad_functions_t mpcodecs_ad_qtaudio
;
57 extern const ad_functions_t mpcodecs_ad_twin
;
58 extern const ad_functions_t mpcodecs_ad_libmusepack
;
59 extern const ad_functions_t mpcodecs_ad_libdca
;
61 const ad_functions_t
* const mpcodecs_ad_drivers
[] =
80 &mpcodecs_ad_imaadpcm
,
82 &mpcodecs_ad_dk3adpcm
,
83 #ifdef CONFIG_WIN32DLL
89 #ifdef CONFIG_QTX_CODECS
95 #ifdef CONFIG_OGGVORBIS
96 &mpcodecs_ad_libvorbis
,
104 #ifdef CONFIG_REALCODECS
105 &mpcodecs_ad_realaud
,
107 #ifdef CONFIG_LIBDV095
110 #ifdef CONFIG_MUSEPACK
111 &mpcodecs_ad_libmusepack
,