fixes from MSVC build

This commit is contained in:
Josh Coalson
2003-12-17 05:52:03 +00:00
parent 99e8c2faa2
commit e83dbbe963
2 changed files with 1 additions and 2 deletions

View File

@@ -334,7 +334,7 @@ namespace OggFLAC {
FLAC__ASSERT(0 != client_data); FLAC__ASSERT(0 != client_data);
Stream *instance = reinterpret_cast<Stream *>(client_data); Stream *instance = reinterpret_cast<Stream *>(client_data);
FLAC__ASSERT(0 != instance); FLAC__ASSERT(0 != instance);
return instance->metadata_callback(metadata); instance->metadata_callback(metadata);
} }
}; };

View File

@@ -367,7 +367,6 @@ static DWORD WINAPI DecodeThread(void *unused)
(float)file_info_.replay_scale, (float)file_info_.replay_scale,
cfg.replaygain.hard_limit, cfg.replaygain.hard_limit,
cfg.resolution.replaygain.dither, cfg.resolution.replaygain.dither,
(NoiseShaping)cfg.resolution.replaygain.noise_shaping,
&file_info_.dither_context &file_info_.dither_context
); );
} }