diff options
| author | Carl Hetherington <cth@carlh.net> | 2021-12-18 14:23:50 +0100 |
|---|---|---|
| committer | Carl Hetherington <cth@carlh.net> | 2021-12-18 14:23:50 +0100 |
| commit | 9ebbeae21efe950c4f18a9f959a8fe9f0be4e8f4 (patch) | |
| tree | 7dd03bf0d57ff95b94da08b2b095065ef4f923c1 /src/lib/make_dcp.h | |
| parent | c6df41f00083b4c34d4993c981cdac97b76eeb95 (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); + |
