Mercurial > mplayer.hg
comparison libmpcodecs/ad.c @ 6367:489c4bcbda13
readaudio decoder - not yet working
author | arpi |
---|---|
date | Mon, 10 Jun 2002 01:32:12 +0000 |
parents | 868c13f78f08 |
children | 0145bba6e201 |
comparison
equal
deleted
inserted
replaced
6366:287c2e661172 | 6367:489c4bcbda13 |
---|---|
32 extern ad_functions_t mpcodecs_ad_acm; | 32 extern ad_functions_t mpcodecs_ad_acm; |
33 extern ad_functions_t mpcodecs_ad_msgsm; | 33 extern ad_functions_t mpcodecs_ad_msgsm; |
34 extern ad_functions_t mpcodecs_ad_faad; | 34 extern ad_functions_t mpcodecs_ad_faad; |
35 extern ad_functions_t mpcodecs_ad_vorbis; | 35 extern ad_functions_t mpcodecs_ad_vorbis; |
36 extern ad_functions_t mpcodecs_ad_libmad; | 36 extern ad_functions_t mpcodecs_ad_libmad; |
37 extern ad_functions_t mpcodecs_ad_real; | |
37 | 38 |
38 ad_functions_t* mpcodecs_ad_drivers[] = | 39 ad_functions_t* mpcodecs_ad_drivers[] = |
39 { | 40 { |
40 // &mpcodecs_ad_null, | 41 // &mpcodecs_ad_null, |
41 &mpcodecs_ad_mp3lib, | 42 &mpcodecs_ad_mp3lib, |
65 &mpcodecs_ad_vorbis, | 66 &mpcodecs_ad_vorbis, |
66 #endif | 67 #endif |
67 #ifdef USE_LIBMAD | 68 #ifdef USE_LIBMAD |
68 &mpcodecs_ad_libmad, | 69 &mpcodecs_ad_libmad, |
69 #endif | 70 #endif |
71 #ifdef USE_REALCODECS | |
72 &mpcodecs_ad_real, | |
73 #endif | |
70 NULL | 74 NULL |
71 }; | 75 }; |