summaryrefslogtreecommitdiff
path: root/src/JP2K.h
diff options
context:
space:
mode:
authorCarl Hetherington <cth@carlh.net>2016-07-01 12:22:38 +0100
committerCarl Hetherington <cth@carlh.net>2019-12-03 17:01:32 +0100
commitdfb6aa39a8000fc071dfa0680584dae173535c9a (patch)
treeccf64f8dbc81ab13d36f3319475fc0e59f95e2ec /src/JP2K.h
parent8204f14304dd463a42f8540413cf95cf49e1f829 (diff)
Move public headers into src/asdcp and install them in a asdcp subdirectory.
Diffstat (limited to 'src/JP2K.h')
-rwxr-xr-xsrc/JP2K.h10
1 files changed, 5 insertions, 5 deletions
diff --git a/src/JP2K.h b/src/JP2K.h
index b043dfc..5128025 100755
--- a/src/JP2K.h
+++ b/src/JP2K.h
@@ -36,9 +36,9 @@ THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
#define _JP2K_H_
// AS_DCP.h is included only for it's base type definitions.
-#include <KM_platform.h>
-#include <KM_util.h>
-#include <AS_DCP.h>
+#include <asdcp/KM_platform.h>
+#include <asdcp/KM_util.h>
+#include <asdcp/AS_DCP.h>
#include <assert.h>
namespace ASDCP
@@ -146,7 +146,7 @@ namespace JP2K
}
~COD() {}
-
+
inline ui8_t ProgOrder() const { return *(m_MarkerData + SGcodOFST ); }
inline ui16_t Layers() const { return KM_i16_BE(*(ui16_t*)(m_MarkerData + SGcodOFST + 1));}
inline ui8_t DecompLevels() const { return *(m_MarkerData + SPcodOFST); }
@@ -213,7 +213,7 @@ namespace JP2K
}
~COM() {}
-
+
inline bool IsText() const { return m_IsText; }
inline const byte_t* CommentData() const { return m_MarkerData; }
inline ui32_t CommentSize() const { return m_DataSize; }