diff options
| author | jhurst <jhurst@cinecert.com> | 2012-02-03 20:15:08 +0000 |
|---|---|---|
| committer | jhurst <> | 2012-02-03 20:15:08 +0000 |
| commit | 80463afc197c90372d3f4c7890c6520f1040aedc (patch) | |
| tree | ceb710348cd8a58a2c90e96c5f1aa0f2ffa984a4 | |
| parent | e0f46a5384974afa6f0be8a738e4989853323fbe (diff) | |
fooey
| -rwxr-xr-x | README | 14 | ||||
| -rw-r--r-- | configure.ac | 2 | ||||
| -rwxr-xr-x | src/asdcp-wrap.cpp | 5 |
3 files changed, 18 insertions, 3 deletions
@@ -113,7 +113,7 @@ utilities all respond to -h. Change History -2012-01-30 - bug fixes v1.8.45 +2012-02-03 - bug fixes 1.9.44d o Corrected UL version segment in "7.1 DS" and "WTF" audio format labels (corresponds with publication of ST 429-2:2011). o Exposed MXF object interface (MXF.h, Metadata.h) via ASDCP MXFReader @@ -126,6 +126,18 @@ Change History SoundfieldGroupLabelSubDescriptor, and GroupOfSoundfieldGroupsLabelSubDescriptor (from ST 377-4:2012) to Metadata.h + o Changed some internals to make MXFWriter::OPAtomHeader() work correctly. + o Split asdcp-test into several different programs to help relieve + the impenetrable-list-of-arguments problem. asdcp-wrap, asdcp-unwrap + and asdcp-info take the place of asdcp-test's -c, -x and -i options, + respectively. asdcp-util contains the remaining functions. Note that + asdcp-test is now DEPRECATED, new functionality and bug fixes will be + aimed at the new tools. Also note that some options and calling + conventions are different for the new tools as compared to asdcp-test. + Please read the synopses and make sure you understand the new idioms. + o asdcp-wrap has a new argument, -C <UL>, that writes the given UL to the + ChannelAssignment item in the WaveAudioDescriptor (only useful when + writing PCM essence). 2011-11-30 - bug fixes v1.8.44 diff --git a/configure.ac b/configure.ac index 9ec9e5c..7c5104f 100644 --- a/configure.ac +++ b/configure.ac @@ -37,7 +37,7 @@ AC_PREREQ([2.59]) # For example, if asdcplib version 1.0.0 were modified to accomodate changes # in file format, and if no changes were made to AS_DCP.h, the new version would be # 1.0.1. If changes were also required in AS_DCP.h, the new version would be 1.1.1. -AC_INIT([asdcplib], [1.9.44c], [asdcplib@cinecert.com]) +AC_INIT([asdcplib], [1.9.44d], [asdcplib@cinecert.com]) AC_CONFIG_AUX_DIR([build-aux]) AC_CONFIG_SRCDIR([src/KM_error.h]) diff --git a/src/asdcp-wrap.cpp b/src/asdcp-wrap.cpp index 916f37f..73b76a3 100755 --- a/src/asdcp-wrap.cpp +++ b/src/asdcp-wrap.cpp @@ -110,7 +110,10 @@ usage(FILE* stream = stdout) fprintf(stream, "\ USAGE: %s [-h|-help] [-V]\n\ \n\ - %s [-3] [-a <uuid>] [-b <buffer-size>] [-C <UL>] [-d <duration>] [-e|-E] [-f <start-frame>] [-j <key-id-string>] [-k <key-string>] [-l <label>] [-L] [-M] [-p <frame-rate>] [-s <num>] [-v] [-W] [-z|-Z] <input-file>+ <output-file>\n\n", + %s [-3] [-a <uuid>] [-b <buffer-size>] [-C <UL>] [-d <duration>]\n\ + [-e|-E] [-f <start-frame>] [-j <key-id-string>] [-k <key-string>]\n\ + [-l <label>] [-L] [-M] [-p <frame-rate>] [-s <num>] [-v] [-W]\n\ + [-z|-Z] <input-file>+ <output-file>\n\n", PROGRAM_NAME, PROGRAM_NAME); fprintf(stream, "\ |
