Mercurial > mplayer.hg
comparison libaf/af.c @ 14217:5b5ebf93ec16
Adds support for LADSPA (Linux Audio Developer's Simple Plugin API) plugins.
Compilation is optional and can be controled by configure. You need to
have the LADSPA SDK installed in order to have it autodetected by configure.
Manual page is updated.
author | ivo |
---|---|
date | Thu, 23 Dec 2004 02:09:52 +0000 |
parents | be8f4abbe960 |
children | e607c3796e2b |
comparison
equal
deleted
inserted
replaced
14216:0d4589ab4d28 | 14217:5b5ebf93ec16 |
---|---|
26 extern af_info_t af_info_volnorm; | 26 extern af_info_t af_info_volnorm; |
27 extern af_info_t af_info_extrastereo; | 27 extern af_info_t af_info_extrastereo; |
28 extern af_info_t af_info_lavcresample; | 28 extern af_info_t af_info_lavcresample; |
29 extern af_info_t af_info_sweep; | 29 extern af_info_t af_info_sweep; |
30 extern af_info_t af_info_hrtf; | 30 extern af_info_t af_info_hrtf; |
31 extern af_info_t af_info_ladspa; | |
31 | 32 |
32 static af_info_t* filter_list[]={ | 33 static af_info_t* filter_list[]={ |
33 &af_info_dummy, | 34 &af_info_dummy, |
34 &af_info_delay, | 35 &af_info_delay, |
35 &af_info_channels, | 36 &af_info_channels, |
50 #ifdef USE_LIBAVCODEC | 51 #ifdef USE_LIBAVCODEC |
51 &af_info_lavcresample, | 52 &af_info_lavcresample, |
52 #endif | 53 #endif |
53 &af_info_sweep, | 54 &af_info_sweep, |
54 &af_info_hrtf, | 55 &af_info_hrtf, |
56 #ifdef HAVE_LADSPA | |
57 &af_info_ladspa, | |
58 #endif | |
55 NULL | 59 NULL |
56 }; | 60 }; |
57 | 61 |
58 // Message printing | 62 // Message printing |
59 af_msg_cfg_t af_msg_cfg={0,NULL,NULL}; | 63 af_msg_cfg_t af_msg_cfg={0,NULL,NULL}; |