X-Git-Url: https://git.carlh.net/gitweb/?a=blobdiff_plain;f=src%2Flib%2Futil.h;h=d6fddcddafb7eac2b79422a49d1769da96260539;hb=f968fb875135884b0551195edc2315d4be76d5bc;hp=1d4b013581870c97184eff2b11453766a205c97a;hpb=3d776dee14fb4c692cc834a5753fa912764a7ee3;p=dcpomatic.git diff --git a/src/lib/util.h b/src/lib/util.h index 1d4b01358..d6fddcdda 100644 --- a/src/lib/util.h +++ b/src/lib/util.h @@ -57,8 +57,13 @@ namespace dcp { #define TEXT_FONT_ID "font" /** Largest KDM size (in bytes) that will be accepted */ #define MAX_KDM_SIZE (256 * 1024) +/** Number of lines that closed caption viewers will display */ +#define CLOSED_CAPTION_LINES 3 +/** Maximum line length of closed caption viewers */ +#define CLOSED_CAPTION_LENGTH 30 extern std::string program_name; +extern bool is_batch_converter; struct AVSubtitle; class AudioBuffers; @@ -92,5 +97,6 @@ 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); extern boost::shared_ptr remap (boost::shared_ptr input, int output_channels, AudioMapping map); +extern Eyes increment_eyes (Eyes e); #endif