X-Git-Url: https://git.carlh.net/gitweb/?p=dcpomatic.git;a=blobdiff_plain;f=src%2Flib%2Futil.h;h=db6c37fe11fa5a423e0cb47eb61c0cd6aa47b3f0;hp=f6306c9712528fb04b0e6f3b8f019048b6ef5ba5;hb=89ae13638097f259f3e50b4b61068dd23451107d;hpb=31a33018f113cb7b631dd7bb4d0ed2a7de914cd8 diff --git a/src/lib/util.h b/src/lib/util.h index f6306c971..db6c37fe1 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. @@ -32,6 +32,7 @@ #include #include #include +#include #include #undef check @@ -49,6 +50,8 @@ 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; @@ -60,10 +63,12 @@ extern double seconds (struct timeval); extern void dcpomatic_setup (); extern void dcpomatic_setup_path_encoding (); extern void dcpomatic_setup_gettext_i18n (std::string); -extern std::string md5_digest_head_tail (std::vector, boost::uintmax_t size); +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 (); @@ -74,9 +79,10 @@ extern int stride_round_up (int, int const *, int); extern void* wrapped_av_malloc (size_t); extern void set_backtrace_file (boost::filesystem::path); extern std::map split_get_request (std::string url); -extern std::string video_asset_filename (boost::shared_ptr asset); -extern std::string audio_asset_filename (boost::shared_ptr asset); +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); #endif