X-Git-Url: https://git.carlh.net/gitweb/?a=blobdiff_plain;f=src%2Flib%2Futil.h;h=db6c37fe11fa5a423e0cb47eb61c0cd6aa47b3f0;hb=c180f317d5a8b27dd191c1f2228ceb6fc4039393;hp=5e1780d727acc495d5f902b627e3ee840dd5670c;hpb=00b60f52add041a36fa62118baf4b5ac78993980;p=dcpomatic.git diff --git a/src/lib/util.h b/src/lib/util.h index 5e1780d72..db6c37fe1 100644 --- a/src/lib/util.h +++ b/src/lib/util.h @@ -50,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; @@ -66,6 +68,7 @@ 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 (); @@ -79,5 +82,7 @@ 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 std::string careful_string_filter (std::string); +extern std::pair audio_channel_types (std::list mapped, int channels); #endif