summaryrefslogtreecommitdiff
path: root/src/picture_mxf.cc
diff options
context:
space:
mode:
Diffstat (limited to 'src/picture_mxf.cc')
-rw-r--r--src/picture_mxf.cc16
1 files changed, 15 insertions, 1 deletions
diff --git a/src/picture_mxf.cc b/src/picture_mxf.cc
index f3a1cd0b..a0de9c64 100644
--- a/src/picture_mxf.cc
+++ b/src/picture_mxf.cc
@@ -1,5 +1,5 @@
/*
- Copyright (C) 2012-2014 Carl Hetherington <cth@carlh.net>
+ Copyright (C) 2012-2015 Carl Hetherington <cth@carlh.net>
This program is free software; you can redistribute it and/or modify
it under the terms of the GNU General Public License as published by
@@ -22,6 +22,7 @@
#include "exceptions.h"
#include "xyz_image.h"
#include "picture_mxf_writer.h"
+#include "dcp_assert.h"
#include "compose.hpp"
#include "AS_DCP.h"
#include "KM_fileio.h"
@@ -186,3 +187,16 @@ PictureMXF::frame_buffer_equals (
return true;
}
+
+string
+PictureMXF::pkl_type (Standard standard) const
+{
+ switch (standard) {
+ case INTEROP:
+ return "application/x-smpte-mxf;asdcpKind=Picture";
+ case SMPTE:
+ return "application/mxf";
+ default:
+ DCP_ASSERT (false);
+ }
+}