From 58f7a1128789a810e52abe066616fcfec719bdfd Mon Sep 17 00:00:00 2001 From: John Emmas Date: Wed, 17 Feb 2016 12:17:05 +0000 Subject: Make sure that MSVC knows which version of 'ceil()' we want (it doesn't have a version that understands 'framecnt_t') --- libs/ardour/export_graph_builder.cc | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'libs/ardour/export_graph_builder.cc') diff --git a/libs/ardour/export_graph_builder.cc b/libs/ardour/export_graph_builder.cc index 58eecff899..a15a48a350 100644 --- a/libs/ardour/export_graph_builder.cc +++ b/libs/ardour/export_graph_builder.cc @@ -314,7 +314,7 @@ ExportGraphBuilder::SFC::SFC (ExportGraphBuilder &parent, FileSpec const & new_c max_frames = min ((framecnt_t) 8192 * channels, max ((framecnt_t) 4096 * channels, max_frames)); chunker.reset (new Chunker (max_frames)); analyser.reset (new Analyser (config.format->sample_rate(), channels, max_frames, - (framecnt_t) ceil (duration * config.format->sample_rate () / sample_rate))); + (framecnt_t) ceil (duration * config.format->sample_rate () / (double) sample_rate))); chunker->add_output (analyser); parent.add_analyser (config.filename->get_path (config.format), analyser); } -- cgit v1.2.3