summaryrefslogtreecommitdiff
path: root/src/lib/subtitle_analysis.h
blob: 04dcc95014b5654489b07b8d64031fbbe3b197a4 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
/*
    Copyright (C) 2020-2021 Carl Hetherington <cth@carlh.net>

    This file is part of DCP-o-matic.

    DCP-o-matic is free software; you can redistribute it and/or modify
    it under the terms of the GNU General Public License as published by
    the Free Software Foundation; either version 2 of the License, or
    (at your option) any later version.

    DCP-o-matic is distributed in the hope that it will be useful,
    but WITHOUT ANY WARRANTY; without even the implied warranty of
    MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
    GNU General Public License for more details.

    You should have received a copy of the GNU General Public License
    along with DCP-o-matic.  If not, see <http://www.gnu.org/licenses/>.

*/


#include "rect.h"
#include <boost/filesystem.hpp>


/** @class SubtitleAnalysis
 *  @brief Class to store the results of a SubtitleAnalysisJob.
 */
class SubtitleAnalysis
{
public:
	explicit SubtitleAnalysis (boost::filesystem::path path);

	SubtitleAnalysis (
			boost::optional<dcpomatic::Rect<double>> bounding_box,
			double analysis_x_offset_,
			double analysis_y_offset_
			)
		: _bounding_box (bounding_box)
		, _analysis_x_offset (analysis_x_offset_)
		, _analysis_y_offset (analysis_y_offset_)
	{}

	SubtitleAnalysis (SubtitleAnalysis const&) = delete;
	SubtitleAnalysis& operator= (SubtitleAnalysis const&) = delete;

	void write (boost::filesystem::path path) const;

	boost::optional<dcpomatic::Rect<double>> bounding_box () const {
		return _bounding_box;
	}

	double analysis_x_offset () const {
		return _analysis_x_offset;
	}

	double analysis_y_offset () const {
		return _analysis_y_offset;
	}

private:
	/** Smallest box which surrounds all subtitles in our content,
	 *  expressed as a proportion of screen size (i.e. 0 is left hand side/top,
	 *  1 is right hand side/bottom), or empty if no subtitles were found.
	 */
	boost::optional<dcpomatic::Rect<double>> _bounding_box;
	double _analysis_x_offset;
	double _analysis_y_offset;

	static int const _current_state_version;
};