diff options
| author | jhurst <jhurst@cinecert.com> | 2014-01-02 23:29:22 +0000 |
|---|---|---|
| committer | jhurst <> | 2014-01-02 23:29:22 +0000 |
| commit | 7ff636405a6bff37432e1c70123f0e6936186166 (patch) | |
| tree | 87d858c6afd73fd21ca6cab5607cffcd1f7d01c3 /src/asdcp-test.cpp | |
| parent | 7f373b689817ee70fbe5d6a14cb0512b5260f77c (diff) | |
o Fixed missing-index-partion bugs for AS-02 files.
o Improved integration of ST 377-4 MCA concepts with ST 429-2 static
labels.
o Added new EssenceType_t values for IMF/AS-02 track files.
o Added detection for AS-02 track files to ASDCP::EssenceType()
o Changed lots of "const char*" to "const std::string&" in the
APIs defined by KM_fileio.h and AS_DCP.h.
o Fixed VBR Delta Segment entries to correctly flag progressive
material.
o Fixed PCM unwrapping bugs in as-02-unwrap.
Diffstat (limited to 'src/asdcp-test.cpp')
| -rwxr-xr-x | src/asdcp-test.cpp | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/src/asdcp-test.cpp b/src/asdcp-test.cpp index 24d6b1e..a35770a 100755 --- a/src/asdcp-test.cpp +++ b/src/asdcp-test.cpp @@ -241,6 +241,9 @@ decode_channel_fmt(const std::string& label_name) else if ( label_name == "7.1DS" ) return PCM::CF_CFG_5; + else if ( label_name == "MCA" ) + return PCM::CF_CFG_6; + fprintf(stderr, "Error decoding channel format string: %s\n", label_name.c_str()); fprintf(stderr, "Expecting '5.1', '6.1', '7.1', '7.1DS' or 'WTF'\n"); return PCM::CF_NONE; |
