From e83dbbe96333157d2b52f91cc94c64cc5ec79eba Mon Sep 17 00:00:00 2001 From: Josh Coalson Date: Wed, 17 Dec 2003 05:52:03 +0000 Subject: [PATCH] fixes from MSVC build --- src/libOggFLAC++/stream_encoder.cpp | 2 +- src/plugin_winamp2/in_flac.c | 1 - 2 files changed, 1 insertion(+), 2 deletions(-) diff --git a/src/libOggFLAC++/stream_encoder.cpp b/src/libOggFLAC++/stream_encoder.cpp index ab22170..6c8a9e0 100644 --- a/src/libOggFLAC++/stream_encoder.cpp +++ b/src/libOggFLAC++/stream_encoder.cpp @@ -334,7 +334,7 @@ namespace OggFLAC { FLAC__ASSERT(0 != client_data); Stream *instance = reinterpret_cast(client_data); FLAC__ASSERT(0 != instance); - return instance->metadata_callback(metadata); + instance->metadata_callback(metadata); } }; diff --git a/src/plugin_winamp2/in_flac.c b/src/plugin_winamp2/in_flac.c index 7de7057..a1e3b3e 100644 --- a/src/plugin_winamp2/in_flac.c +++ b/src/plugin_winamp2/in_flac.c @@ -367,7 +367,6 @@ static DWORD WINAPI DecodeThread(void *unused) (float)file_info_.replay_scale, cfg.replaygain.hard_limit, cfg.resolution.replaygain.dither, - (NoiseShaping)cfg.resolution.replaygain.noise_shaping, &file_info_.dither_context ); } -- 2.7.4