From 86a2c0fd44aca18d248cb169b3588b53443686e4 Mon Sep 17 00:00:00 2001 From: Moritz Bunkus Date: Sat, 18 Aug 2012 21:02:21 +0200 Subject: [PATCH] Remove invalid floating point number suffix 'd' --- src/merge/output_control.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/merge/output_control.cpp b/src/merge/output_control.cpp index 001508dd0..fa30027d6 100644 --- a/src/merge/output_control.cpp +++ b/src/merge/output_control.cpp @@ -635,7 +635,7 @@ set_timecode_scale() { && (0 < highest_sample_rate) && ( !video_present || (TIMECODE_SCALE_MODE_AUTO == g_timecode_scale_mode))) - g_timecode_scale = static_cast(1000000000.0d / highest_sample_rate - 1.0); + g_timecode_scale = static_cast(1000000000.0 / highest_sample_rate - 1.0); g_max_ns_per_cluster = std::min((int64_t)(32700 * g_timecode_scale), g_max_ns_per_cluster); GetChildAs(s_kax_infos) = (int64_t)g_timecode_scale;