summaryrefslogtreecommitdiff
path: root/src/lib/util.h
diff options
context:
space:
mode:
authorCarl Hetherington <cth@carlh.net>2015-08-26 20:27:45 +0100
committerCarl Hetherington <cth@carlh.net>2015-08-26 20:27:45 +0100
commit6b62e9c77b2a45fd1d7084626f2bb2949e832e5f (patch)
tree486f58182c8b740a8ba2be20d59e002f2d8c55dd /src/lib/util.h
parente7e9347cdd1f43e0dd3d1ca35632e9493a010fc6 (diff)
Separate FFmpegSubtitlePeriod.
Diffstat (limited to 'src/lib/util.h')
-rw-r--r--src/lib/util.h19
1 files changed, 0 insertions, 19 deletions
diff --git a/src/lib/util.h b/src/lib/util.h
index a0218fc39..143874c3b 100644
--- a/src/lib/util.h
+++ b/src/lib/util.h
@@ -50,7 +50,6 @@ namespace dcp {
extern std::string program_name;
-class Job;
struct AVSubtitle;
extern std::string seconds_to_hms (int);
@@ -71,24 +70,6 @@ extern std::string tidy_for_filename (std::string);
extern dcp::Size fit_ratio_within (float ratio, dcp::Size);
extern int stride_round_up (int, int const *, int);
extern void* wrapped_av_malloc (size_t);
-
-class FFmpegSubtitlePeriod
-{
-public:
- FFmpegSubtitlePeriod (ContentTime f)
- : from (f)
- {}
-
- FFmpegSubtitlePeriod (ContentTime f, ContentTime t)
- : from (f)
- , to (t)
- {}
-
- ContentTime from;
- boost::optional<ContentTime> to;
-};
-
-extern FFmpegSubtitlePeriod subtitle_period (AVSubtitle const &);
extern void set_backtrace_file (boost::filesystem::path);
extern std::map<std::string, std::string> split_get_request (std::string url);
extern std::string video_asset_filename (boost::shared_ptr<dcp::PictureAsset> asset);