diff options
| author | Carl Hetherington <cth@carlh.net> | 2021-12-18 14:23:50 +0100 |
|---|---|---|
| committer | Carl Hetherington <cth@carlh.net> | 2022-04-20 19:35:36 +0200 |
| commit | df5228d00d70d68218e7f606131a0c5fa2caba9f (patch) | |
| tree | 7362b301f4693051a8722945378d11d9a0ef4c1d /src/lib/make_dcp.h | |
| parent | 6e0f867a69cf4e337370edc986347218afde548e (diff) | |
Move make_dcp() out of Film (#2132).
Diffstat (limited to 'src/lib/make_dcp.h')
| -rw-r--r-- | src/lib/make_dcp.h | 29 |
1 files changed, 29 insertions, 0 deletions
diff --git a/src/lib/make_dcp.h b/src/lib/make_dcp.h new file mode 100644 index 000000000..9f5072782 --- /dev/null +++ b/src/lib/make_dcp.h @@ -0,0 +1,29 @@ +/* + Copyright (C) 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 "transcode_job.h" + + +class Film; + + +void make_dcp (std::shared_ptr<Film> film, TranscodeJob::ChangedBehaviour behaviour); + |
