summaryrefslogtreecommitdiff
path: root/src/frame_info.h
diff options
context:
space:
mode:
authorCarl Hetherington <cth@carlh.net>2024-03-21 23:01:13 +0100
committerCarl Hetherington <cth@carlh.net>2024-04-18 12:11:43 +0200
commitf18fe4e3d90cd7a2c0436881f0ac7a5873383741 (patch)
tree23ea84db7c0095cd2ff75f72d50f95911d694a26 /src/frame_info.h
parent3d53fb23efa153e10c37071a4ecac48b74c2dbd6 (diff)
Move FrameInfo into its own file.
Diffstat (limited to 'src/frame_info.h')
-rw-r--r--src/frame_info.h68
1 files changed, 68 insertions, 0 deletions
diff --git a/src/frame_info.h b/src/frame_info.h
new file mode 100644
index 00000000..55957cca
--- /dev/null
+++ b/src/frame_info.h
@@ -0,0 +1,68 @@
+/*
+ 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_FRAME_INFO_H
+#define LIBDCP_FRAME_INFO_H
+
+
+#include <stdint.h>
+#include <string>
+
+
+namespace dcp {
+
+
+/** @class FrameInfo
+ * @brief Information about a single frame (either a monoscopic frame or a left *or* right eye stereoscopic frame)
+ */
+struct FrameInfo
+{
+ FrameInfo () = default;
+
+ FrameInfo(uint64_t o, uint64_t s, std::string h)
+ : offset(o)
+ , size(s)
+ , hash(h)
+ {}
+
+ uint64_t offset = 0;
+ uint64_t size = 0;
+ std::string hash;
+};
+
+
+}
+
+
+#endif