diff options
| author | Carl Hetherington <cth@carlh.net> | 2025-12-16 17:44:03 +0100 |
|---|---|---|
| committer | Carl Hetherington <cth@carlh.net> | 2025-12-18 01:10:32 +0100 |
| commit | a8c0fd03be2ee810741fe7ab2063926ea8834e8b (patch) | |
| tree | 605633c6d1b5aebfbc58359bbc4fde4e4dbe928c /src | |
| parent | 5e4f750326013cdf8c7d1f7a677f92b4aec436cf (diff) | |
Add PictureEncoding enum.
Diffstat (limited to 'src')
| -rw-r--r-- | src/picture_encoding.h | 54 | ||||
| -rw-r--r-- | src/wscript | 1 |
2 files changed, 55 insertions, 0 deletions
diff --git a/src/picture_encoding.h b/src/picture_encoding.h new file mode 100644 index 00000000..56065528 --- /dev/null +++ b/src/picture_encoding.h @@ -0,0 +1,54 @@ +/* + Copyright (C) 2012-2021 Carl Hetherington <cth@carlh.net> + + This file is part of libdcp. + + libdcp 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. + + libdcp 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 libdcp. If not, see <http://www.gnu.org/licenses/>. + + In addition, as a special exception, the copyright holders give + permission to link the code of portions of this program with the + OpenSSL library under certain conditions as described in each + individual source file, and distribute linked combinations + including the two. + + You must obey the GNU General Public License in all respects + for all of the code used other than OpenSSL. If you modify + file(s) with this exception, you may extend this exception to your + version of the file(s), but you are not obligated to do so. If you + do not wish to do so, delete this exception statement from your + version. If you delete this exception statement from all source + files in the program, then also delete it here. +*/ + + +#ifndef LIBDCP_PICTURE_ENCODING_H +#define LIBDCP_PICTURE_ENCODING_H + + +namespace dcp { + + +enum class PictureEncoding { + NO_VIDEO, + JPEG2000, + MPEG2, + MIXED, +}; + + +} + + +#endif + diff --git a/src/wscript b/src/wscript index 04356b4f..9b59b602 100644 --- a/src/wscript +++ b/src/wscript @@ -210,6 +210,7 @@ def build(bld): object.h openjpeg_image.h picture_asset.h + picture_encoding.h piecewise_lut.h pkl.h profile.h |
