X-Git-Url: https://main.carlh.net/gitweb/?a=blobdiff_plain;f=src%2Flib%2Futil.h;h=e23eff07c28575aac81786b067b5edeb0ce6fe96;hb=cadca6e4f8c1d844f1b5fb9375023e627c674fa9;hp=548dd0475ff5f790fae8ea322755f4adb9da07dd;hpb=504e234f92de578a8d1214d6a73c790a896f0a90;p=dcpomatic.git diff --git a/src/lib/util.h b/src/lib/util.h index 548dd0475..e23eff07c 100644 --- a/src/lib/util.h +++ b/src/lib/util.h @@ -65,6 +65,15 @@ namespace dcp { #define MAX_CLOSED_CAPTION_LINES 3 /** Maximum line length of closed caption viewers, according to SMPTE Bv2.1 */ #define MAX_CLOSED_CAPTION_LENGTH 32 +/** Maximum size of a subtitle / closed caption MXF in bytes, according to SMPTE Bv2.1 */ +#define MAX_TEXT_MXF_SIZE (115 * 1024 * 1024) +#define MAX_TEXT_MXF_SIZE_TEXT "115MB" +/** Maximum size of a font file, in bytes */ +#define MAX_FONT_FILE_SIZE (640 * 1024) +#define MAX_FONT_FILE_SIZE_TEXT "640KB" +/** Maximum size of the XML part of a closed caption file, according to SMPTE Bv2.1 */ +#define MAX_CLOSED_CAPTION_XML_SIZE (256 * 1024) +#define MAX_CLOSED_CAPTION_XML_SIZE_TEXT "256KB" extern std::string program_name; extern bool is_batch_converter;