summaryrefslogtreecommitdiff
path: root/src/mxf.cc
diff options
context:
space:
mode:
Diffstat (limited to 'src/mxf.cc')
-rw-r--r--src/mxf.cc6
1 files changed, 3 insertions, 3 deletions
diff --git a/src/mxf.cc b/src/mxf.cc
index b6c11bb8..20cfbaed 100644
--- a/src/mxf.cc
+++ b/src/mxf.cc
@@ -80,7 +80,7 @@ MXF::fill_writer_info (ASDCP::WriterInfo* writer_info, string id) const
writer_info->ProductName = _metadata.product_name;
DCP_ASSERT (_standard);
- if (_standard == INTEROP) {
+ if (_standard == Standard::INTEROP) {
writer_info->LabelSetType = ASDCP::LS_MXF_INTEROP;
} else {
writer_info->LabelSetType = ASDCP::LS_MXF_SMPTE;
@@ -129,10 +129,10 @@ MXF::read_writer_info (ASDCP::WriterInfo const & info)
switch (info.LabelSetType) {
case ASDCP::LS_MXF_INTEROP:
- _standard = INTEROP;
+ _standard = Standard::INTEROP;
break;
case ASDCP::LS_MXF_SMPTE:
- _standard = SMPTE;
+ _standard = Standard::SMPTE;
break;
default:
throw ReadError ("Unrecognised label set type in MXF");