From 976a6ba67da9ba8003d18491504c84a51f3aafdd Mon Sep 17 00:00:00 2001 From: Moritz Bunkus Date: Wed, 4 Oct 2017 10:25:19 +0200 Subject: [PATCH] fix "conflicting types" --- src/merge/output_control.cpp | 38 ++++++++++++++++++------------------ 1 file changed, 19 insertions(+), 19 deletions(-) diff --git a/src/merge/output_control.cpp b/src/merge/output_control.cpp index 7688d92fa..5fd76709e 100644 --- a/src/merge/output_control.cpp +++ b/src/merge/output_control.cpp @@ -91,32 +91,32 @@ std::vector g_append_mapping; std::unordered_map g_packetizers_by_track_num; family_uids_c g_segfamily_uids; -int64_t g_attachment_sizes_first = 0; -int64_t g_attachment_sizes_others = 0; +int64_t g_attachment_sizes_first = 0; +int64_t g_attachment_sizes_others = 0; kax_info_cptr g_kax_info_chap; // Variables set by the command line parser. std::string g_outfile; -int64_t g_file_sizes = 0; -int g_max_blocks_per_cluster = 65535; -int64_t g_max_ns_per_cluster = 5000000000ll; -bool g_write_cues = true; -bool g_cue_writing_requested = false; -generic_packetizer_c *g_video_packetizer = nullptr; -bool g_write_meta_seek_for_clusters = false; -bool g_no_lacing = false; -bool g_no_linking = true; -bool g_use_durations = false; -bool g_no_track_statistics_tags = false; -bool g_write_date = true; +int64_t g_file_sizes = 0; +int g_max_blocks_per_cluster = 65535; +int64_t g_max_ns_per_cluster = 5000000000ll; +bool g_write_cues = true; +bool g_cue_writing_requested = false; +generic_packetizer_c *g_video_packetizer = nullptr; +bool g_write_meta_seek_for_clusters = false; +bool g_no_lacing = false; +bool g_no_linking = true; +bool g_use_durations = false; +bool g_no_track_statistics_tags = false; +bool g_write_date = true; -double g_timestamp_scale = TIMESTAMP_SCALE; -auto g_timestamp_scale_mode = timestamp_scale_mode_e{TIMESTAMP_SCALE_MODE_NORMAL}; +double g_timestamp_scale = TIMESTAMP_SCALE; +timestamp_scale_mode_e g_timestamp_scale_mode = timestamp_scale_mode_e{TIMESTAMP_SCALE_MODE_NORMAL}; -float g_video_fps = -1.0; -int g_default_tracks[3] = { 0, 0, 0, }; -int g_default_tracks_priority[3] = { 0, 0, 0, }; +float g_video_fps = -1.0; +int g_default_tracks[3] = { 0, 0, 0, }; +int g_default_tracks_priority[3] = { 0, 0, 0, }; bool g_identifying = false; identification_output_format_e g_identification_output_format = identification_output_format_e::text;