Extend maximum DCP audio channels to 16.
[dcpomatic.git] / src / lib / util.h
1 /*
2     Copyright (C) 2012-2015 Carl Hetherington <cth@carlh.net>
3
4     This program is free software; you can redistribute it and/or modify
5     it under the terms of the GNU General Public License as published by
6     the Free Software Foundation; either version 2 of the License, or
7     (at your option) any later version.
8
9     This program is distributed in the hope that it will be useful,
10     but WITHOUT ANY WARRANTY; without even the implied warranty of
11     MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
12     GNU General Public License for more details.
13
14     You should have received a copy of the GNU General Public License
15     along with this program; if not, write to the Free Software
16     Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
17
18 */
19
20 /** @file src/util.h
21  *  @brief Some utility functions and classes.
22  */
23
24 #ifndef DCPOMATIC_UTIL_H
25 #define DCPOMATIC_UTIL_H
26
27 #include "types.h"
28 #include "dcpomatic_time.h"
29 #include <dcp/util.h>
30 #include <boost/shared_ptr.hpp>
31 #include <boost/optional.hpp>
32 #include <boost/filesystem.hpp>
33 #include <string>
34 #include <vector>
35
36 #undef check
37
38 namespace dcp {
39         class PictureAsset;
40         class SoundAsset;
41 }
42
43 /** The maximum number of audio channels that we can have in a DCP */
44 #define MAX_DCP_AUDIO_CHANNELS 16
45 /** Message broadcast to find possible encoding servers */
46 #define DCPOMATIC_HELLO "I mean really, Ray, it's used."
47 /** Number of films to keep in history */
48 #define HISTORY_SIZE 10
49 #define REPORT_PROBLEM _("Please report this problem by using Help -> Report a problem or via email to carl@dcpomatic.com")
50
51 extern std::string program_name;
52
53 struct AVSubtitle;
54
55 extern std::string seconds_to_hms (int);
56 extern std::string seconds_to_approximate_hms (int);
57 extern double seconds (struct timeval);
58 extern void dcpomatic_setup ();
59 extern void dcpomatic_setup_path_encoding ();
60 extern void dcpomatic_setup_gettext_i18n (std::string);
61 extern std::string md5_digest_head_tail (std::vector<boost::filesystem::path>, boost::uintmax_t size);
62 extern void ensure_ui_thread ();
63 extern std::string audio_channel_name (int);
64 extern bool valid_image_file (boost::filesystem::path);
65 extern bool valid_j2k_file (boost::filesystem::path);
66 #ifdef DCPOMATIC_WINDOWS
67 extern boost::filesystem::path mo_path ();
68 #endif
69 extern std::string tidy_for_filename (std::string);
70 extern dcp::Size fit_ratio_within (float ratio, dcp::Size);
71 extern int stride_round_up (int, int const *, int);
72 extern void* wrapped_av_malloc (size_t);
73 extern void set_backtrace_file (boost::filesystem::path);
74 extern std::map<std::string, std::string> split_get_request (std::string url);
75 extern std::string video_asset_filename (boost::shared_ptr<dcp::PictureAsset> asset);
76 extern std::string audio_asset_filename (boost::shared_ptr<dcp::SoundAsset> asset);
77
78 #endif