diff options
author | Darren Salt <linux@youmustbejoking.demon.co.uk> | 2006-06-02 22:18:56 +0000 |
---|---|---|
committer | Darren Salt <linux@youmustbejoking.demon.co.uk> | 2006-06-02 22:18:56 +0000 |
commit | 6a90ef1128ca51713804e94da00f9c3a7440ec16 (patch) | |
tree | 7334efc2d5286d3842c0256a26673a381c9514b2 /src/post/audio | |
parent | 11de71b0938af5b027b78b0e0db9617ab22a319f (diff) | |
download | xine-lib-6a90ef1128ca51713804e94da00f9c3a7440ec16.tar.gz xine-lib-6a90ef1128ca51713804e94da00f9c3a7440ec16.tar.bz2 |
Various static/const fixes from Gentoo.
CVS patchset: 8009
CVS date: 2006/06/02 22:18:56
Diffstat (limited to 'src/post/audio')
-rw-r--r-- | src/post/audio/audio_filters.c | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/src/post/audio/audio_filters.c b/src/post/audio/audio_filters.c index f8d4bc0e8..a3f3e7c1d 100644 --- a/src/post/audio/audio_filters.c +++ b/src/post/audio/audio_filters.c @@ -17,7 +17,7 @@ * along with this program; if not, write to the Free Software * Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA * - * $Id: audio_filters.c,v 1.5 2006/05/03 19:46:08 dsalt Exp $ + * $Id: audio_filters.c,v 1.6 2006/06/02 22:18:58 dsalt Exp $ * * catalog for audio filter plugins */ @@ -30,10 +30,10 @@ #include "audio_filters.h" -post_info_t upmix_special_info = { XINE_POST_TYPE_AUDIO_FILTER }; -post_info_t upmix_mono_special_info = { XINE_POST_TYPE_AUDIO_FILTER }; -post_info_t stretch_special_info = { XINE_POST_TYPE_AUDIO_FILTER }; -post_info_t volnorm_special_info = { XINE_POST_TYPE_AUDIO_FILTER }; +static const post_info_t upmix_special_info = { XINE_POST_TYPE_AUDIO_FILTER }; +static const post_info_t upmix_mono_special_info = { XINE_POST_TYPE_AUDIO_FILTER }; +static const post_info_t stretch_special_info = { XINE_POST_TYPE_AUDIO_FILTER }; +static const post_info_t volnorm_special_info = { XINE_POST_TYPE_AUDIO_FILTER }; const plugin_info_t xine_plugin_info[] = { |