summaryrefslogtreecommitdiff
path: root/src/mxf.cc
diff options
context:
space:
mode:
authorCarl Hetherington <cth@carlh.net>2015-06-04 18:10:12 +0100
committerCarl Hetherington <cth@carlh.net>2015-06-05 14:34:44 +0100
commitbb5faa34a893dcec91329d6856335e050cf8357c (patch)
treeaffc63fc05285bac7167d6ef66b87aca9efd1762 /src/mxf.cc
parent2293c14a21f8a4929abd8b97033699f5d3bba1dc (diff)
Take pkl_type out of MXF.
Diffstat (limited to 'src/mxf.cc')
-rw-r--r--src/mxf.cc13
1 files changed, 0 insertions, 13 deletions
diff --git a/src/mxf.cc b/src/mxf.cc
index 756f099a..93ff89a5 100644
--- a/src/mxf.cc
+++ b/src/mxf.cc
@@ -153,16 +153,3 @@ MXF::read_writer_info (ASDCP::WriterInfo const & info)
Kumu::bin2UUIDhex (info.AssetUUID, ASDCP::UUIDlen, buffer, sizeof (buffer));
_id = buffer;
}
-
-string
-MXF::pkl_type (Standard standard) const
-{
- switch (standard) {
- case INTEROP:
- return String::compose ("application/x-smpte-mxf;asdcpKind=%1", asdcp_kind ());
- case SMPTE:
- return "application/mxf";
- default:
- DCP_ASSERT (false);
- }
-}