X-Git-Url: https://git.carlh.net/gitweb/?a=blobdiff_plain;f=src%2Flib%2Futil.h;h=d4616a7c9ea1bc4e0eadcb7e413a721314917602;hb=e0c524cbc4f006a4319c3ce8aa7625f9d70d054a;hp=e786bb9c1a7a4251ffe7d5a5a9974f531348d83f;hpb=b1dc9c3a2f7e55c9afc5bf2d5b465371b048e14f;p=dcpomatic.git diff --git a/src/lib/util.h b/src/lib/util.h index e786bb9c1..d4616a7c9 100644 --- a/src/lib/util.h +++ b/src/lib/util.h @@ -1,5 +1,5 @@ /* - Copyright (C) 2012-2015 Carl Hetherington + Copyright (C) 2012-2016 Carl Hetherington This file is part of DCP-o-matic. @@ -27,6 +27,7 @@ #include "types.h" #include "dcpomatic_time.h" +#include "audio_mapping.h" #include #include #include @@ -50,12 +51,16 @@ namespace dcp { #define HISTORY_SIZE 10 #define REPORT_PROBLEM _("Please report this problem by using Help -> Report a problem or via email to carl@dcpomatic.com") #define TEXT_FONT_ID "font" +/** Largest KDM size (in bytes) that will be accepted */ +#define MAX_KDM_SIZE (256 * 1024) extern std::string program_name; struct AVSubtitle; +class AudioBuffers; extern std::string seconds_to_hms (int); +extern std::string time_to_hmsf (DCPTime time, Frame rate); extern std::string seconds_to_approximate_hms (int); extern double seconds (struct timeval); extern void dcpomatic_setup (); @@ -64,7 +69,9 @@ extern void dcpomatic_setup_gettext_i18n (std::string); extern std::string digest_head_tail (std::vector, boost::uintmax_t size); extern void ensure_ui_thread (); extern std::string audio_channel_name (int); +extern std::string short_audio_channel_name (int); extern bool valid_image_file (boost::filesystem::path); +extern bool valid_sound_file (boost::filesystem::path); extern bool valid_j2k_file (boost::filesystem::path); #ifdef DCPOMATIC_WINDOWS extern boost::filesystem::path mo_path (); @@ -78,6 +85,8 @@ extern std::map split_get_request (std::string url); extern std::string video_asset_filename (boost::shared_ptr asset, int reel_index, int reel_count, boost::optional content_summary); extern std::string audio_asset_filename (boost::shared_ptr asset, int reel_index, int reel_count, boost::optional content_summary); extern float relaxed_string_to_float (std::string); -extern bool string_not_empty (std::string); +extern std::string careful_string_filter (std::string); +extern std::pair audio_channel_types (std::list mapped, int channels); +extern boost::shared_ptr remap (boost::shared_ptr input, int output_channels, AudioMapping map); #endif