Move things round a bit.
[dcpomatic.git] / src / lib / film_state.h
1 /*
2     Copyright (C) 2012 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/film_state.h
21  *  @brief The state of a Film.  This is separate from Film so that
22  *  state can easily be copied and kept around for reference
23  *  by long-running jobs.  This avoids the jobs getting confused
24  *  by the user changing Film settings during their run.
25  */
26
27 #ifndef DVDOMATIC_FILM_STATE_H
28 #define DVDOMATIC_FILM_STATE_H
29
30 extern "C" {
31 #include <libavcodec/avcodec.h>
32 #include <libswscale/swscale.h>
33 }
34 #include "scaler.h"
35 #include "util.h"
36 #include "trim_action.h"
37
38 class Format;
39 class DCPContentType;
40 class Filter;
41
42 /** @class FilmState
43  *  @brief The state of a Film.
44  *
45  *  This is separate from Film so that state can easily be copied and
46  *  kept around for reference by long-running jobs.  This avoids the
47  *  jobs getting confused by the user changing Film settings during
48  *  their run.
49  */
50
51 class FilmState
52 {
53 public:
54         FilmState ()
55                 : dcp_content_type (0)
56                 , frames_per_second (0)
57                 , format (0)
58                 , left_crop (0)
59                 , right_crop (0)
60                 , top_crop (0)
61                 , bottom_crop (0)
62                 , scaler (Scaler::from_id ("bicubic"))
63                 , dcp_frames (0)
64                 , dcp_trim_action (CUT)
65                 , dcp_ab (false)
66                 , audio_gain (0)
67                 , audio_delay (0)
68                 , still_duration (10)
69                 , length (0)
70                 , audio_channels (0)
71                 , audio_sample_rate (0)
72                 , audio_sample_format (AV_SAMPLE_FMT_NONE)
73         {}
74
75         std::string file (std::string f) const;
76         std::string dir (std::string d) const;
77
78         std::string content_path () const;
79         ContentType content_type () const;
80         
81         bool content_is_dvd () const;
82
83         std::string thumb_file (int) const;
84         int thumb_frame (int) const;
85         
86         void write_metadata (std::ofstream &) const;
87         void read_metadata (std::string, std::string);
88
89         Size cropped_size (Size) const;
90
91         /** Complete path to directory containing the film metadata;
92             must not be relative.
93         */
94         std::string directory;
95         /** Name for DVD-o-matic */
96         std::string name;
97         /** File or directory containing content; may be relative to our directory
98          *  or an absolute path.
99          */
100         std::string content;
101         /** The type of content that this Film represents (feature, trailer etc.) */
102         DCPContentType const * dcp_content_type;
103         /** Frames per second of the source */
104         float frames_per_second;
105         /** The format to present this Film in (flat, scope, etc.) */
106         Format const * format;
107         /** Number of pixels to crop from the left-hand side of the original picture */
108         int left_crop;
109         /** Number of pixels to crop from the right-hand side of the original picture */
110         int right_crop;
111         /** Number of pixels to crop from the top of the original picture */
112         int top_crop;
113         /** Number of pixels to crop from the bottom of the original picture */
114         int bottom_crop;
115         /** Video filters that should be used when generating DCPs */
116         std::vector<Filter const *> filters;
117         /** Scaler algorithm to use */
118         Scaler const * scaler;
119         /** Number of frames to put in the DCP, or 0 for all */
120         int dcp_frames;
121
122         TrimAction dcp_trim_action;
123                 
124         /** true to create an A/B comparison DCP, where the left half of the image
125             is the video without any filters or post-processing, and the right half
126             has the specified filters and post-processing.
127         */
128         bool dcp_ab;
129         /** Gain to apply to audio in dB */
130         float audio_gain;
131         /** Delay to apply to audio (positive moves audio later) in milliseconds */
132         int audio_delay;
133         /** Duration to make still-sourced films (in seconds) */
134         int still_duration;
135
136         /* Data which is cached to speed things up */
137
138         /** Vector of frame indices for each of our `thumbnails */
139         std::vector<int> thumbs;
140         /** Size, in pixels, of the source (ignoring cropping) */
141         Size size;
142         /** Length in frames */
143         int length;
144         /** Number of audio channels */
145         int audio_channels;
146         /** Sample rate of the audio, in Hz */
147         int audio_sample_rate;
148         /** Format of the audio samples */
149         AVSampleFormat audio_sample_format;
150
151 private:
152         std::string thumb_file_for_frame (int) const;
153 };
154
155 #endif