Merge branch 'master' of /home/carl/git/dvdomatic
[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                 , scaler (Scaler::from_id ("bicubic"))
59                 , dcp_frames (0)
60                 , dcp_trim_action (CUT)
61                 , dcp_ab (false)
62                 , audio_gain (0)
63                 , audio_delay (0)
64                 , still_duration (10)
65                 , length (0)
66                 , audio_channels (0)
67                 , audio_sample_rate (0)
68                 , audio_sample_format (AV_SAMPLE_FMT_NONE)
69         {}
70
71         std::string file (std::string f) const;
72         std::string dir (std::string d) const;
73
74         std::string content_path () const;
75         ContentType content_type () const;
76         
77         bool content_is_dvd () const;
78
79         std::string thumb_file (int) const;
80         int thumb_frame (int) const;
81
82         int bytes_per_sample () const;
83         
84         void write_metadata (std::ofstream &) const;
85         void read_metadata (std::string, std::string);
86
87         Size cropped_size (Size) const;
88
89         /** Complete path to directory containing the film metadata;
90             must not be relative.
91         */
92         std::string directory;
93         /** Name for DVD-o-matic */
94         std::string name;
95         /** File or directory containing content; may be relative to our directory
96          *  or an absolute path.
97          */
98         std::string content;
99         /** The type of content that this Film represents (feature, trailer etc.) */
100         DCPContentType const * dcp_content_type;
101         /** Frames per second of the source */
102         float frames_per_second;
103         /** The format to present this Film in (flat, scope, etc.) */
104         Format const * format;
105         Crop crop;
106         /** Video filters that should be used when generating DCPs */
107         std::vector<Filter const *> filters;
108         /** Scaler algorithm to use */
109         Scaler const * scaler;
110         /** Number of frames to put in the DCP, or 0 for all */
111         int dcp_frames;
112
113         TrimAction dcp_trim_action;
114                 
115         /** true to create an A/B comparison DCP, where the left half of the image
116             is the video without any filters or post-processing, and the right half
117             has the specified filters and post-processing.
118         */
119         bool dcp_ab;
120         /** Gain to apply to audio in dB */
121         float audio_gain;
122         /** Delay to apply to audio (positive moves audio later) in milliseconds */
123         int audio_delay;
124         /** Duration to make still-sourced films (in seconds) */
125         int still_duration;
126
127         /* Data which is cached to speed things up */
128
129         /** Vector of frame indices for each of our `thumbnails' */
130         std::vector<int> thumbs;
131         /** Size, in pixels, of the source (ignoring cropping) */
132         Size size;
133         /** Length of the source in frames */
134         int length;
135         /** Number of audio channels */
136         int audio_channels;
137         /** Sample rate of the source audio, in Hz */
138         int audio_sample_rate;
139         /** Format of the audio samples */
140         AVSampleFormat audio_sample_format;
141         /** MD5 digest of our content file */
142         std::string content_digest;
143
144 private:
145         std::string thumb_file_for_frame (int) const;
146 };
147
148 #endif