summaryrefslogtreecommitdiff
path: root/src/MPEG.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/MPEG.h
parent8204f14304dd463a42f8540413cf95cf49e1f829 (diff)
Move public headers into src/asdcp and install them in a asdcp subdirectory.
Diffstat (limited to 'src/MPEG.h')
-rwxr-xr-xsrc/MPEG.h8
1 files changed, 4 insertions, 4 deletions
diff --git a/src/MPEG.h b/src/MPEG.h
index 6833584..c0adcfb 100755
--- a/src/MPEG.h
+++ b/src/MPEG.h
@@ -32,8 +32,8 @@ THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
#ifndef _MPEG_H_
#define _MPEG_H_
-#include <KM_platform.h>
-#include "AS_DCP.h"
+#include <asdcp/KM_platform.h>
+#include <asdcp/AS_DCP.h>
#include <stdio.h>
#include <assert.h>
@@ -219,7 +219,7 @@ namespace ASDCP
{
const byte_t* m_p;
ASDCP_NO_COPY_CONSTRUCT(Picture);
-
+
public:
Picture(const byte_t* p) { assert(p); m_p = p + 4; }
inline i16_t TemporalRef() {
@@ -230,7 +230,7 @@ namespace ASDCP
return (FrameType_t)( ( m_p[1] & 0x38 ) >> 3 );
}
};
-
+
} // namespace Accessor
} // namespace MPEG2