Second patch from X-Fixer: tweaks for better MSVC build
[platform/upstream/flac.git] / src / plugin_common / replaygain_synthesis.h
index efdc76d..64fa210 100644 (file)
@@ -1,5 +1,5 @@
 /* plugin_common - Routines common to several plugins
- * Copyright (C) 2002  Josh Coalson
+ * Copyright (C) 2002,2003  Josh Coalson
  *
  * This program is free software; you can redistribute it and/or
  * modify it under the terms of the GNU General Public License
@@ -19,8 +19,6 @@
 #ifndef FLAC__PLUGIN_COMMON__REPLAYGAIN_SYNTHESIS_H
 #define FLAC__PLUGIN_COMMON__REPLAYGAIN_SYNTHESIS_H
 
-#include "export.h"
-
 #include "defs.h"
 #include "FLAC/ordinals.h"
 
@@ -41,9 +39,9 @@ typedef enum {
        NOISE_SHAPING_HIGH = 3
 } NoiseShaping;
 
-PLUGIN_COMMON_API void FLAC__plugin_common__init_dither_context(DitherContext *dither, int bits, int shapingtype);
+void FLAC__plugin_common__init_dither_context(DitherContext *dither, int bits, int shapingtype);
 
 /* scale = (float) pow(10., (double)replaygain * 0.05); */
-PLUGIN_COMMON_API int FLAC__plugin_common__apply_gain(FLAC__byte *data_out, FLAC__int32 *input, unsigned wide_samples, unsigned channels, const unsigned source_bps, const unsigned target_bps, const float scale, const FLAC__bool hard_limit, FLAC__bool do_dithering, NoiseShaping noise_shaping, DitherContext *dither_context);
+int FLAC__plugin_common__apply_gain(FLAC__byte *data_out, FLAC__int32 *input, unsigned wide_samples, unsigned channels, const unsigned source_bps, const unsigned target_bps, const float scale, const FLAC__bool hard_limit, FLAC__bool do_dithering, NoiseShaping noise_shaping, DitherContext *dither_context);
 
 #endif