diff options
| author | jhurst <jhurst@cinecert.com> | 2010-11-15 17:04:13 +0000 |
|---|---|---|
| committer | jhurst <> | 2010-11-15 17:04:13 +0000 |
| commit | 87d8df7af62597f68645cbb7b07cb130ab2a1adb (patch) | |
| tree | 497d70ef10e1f222537eecf9a7c36794dc4a5724 /src/asdcp-test.cpp | |
| parent | b6fd53ca44570ef077932b468402dc6797e71f95 (diff) | |
release!
Diffstat (limited to 'src/asdcp-test.cpp')
| -rwxr-xr-x | src/asdcp-test.cpp | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/src/asdcp-test.cpp b/src/asdcp-test.cpp index 8b72ebc..d571922 100755 --- a/src/asdcp-test.cpp +++ b/src/asdcp-test.cpp @@ -176,7 +176,7 @@ Read/Write Options:\n\ is no label (valid for Interop only).\n\ -L - Write SMPTE UL values instead of MXF Interop\n\ -p <rate> - fps of picture when wrapping PCM or JP2K:\n\ - Use one of [23|24|48], 24 is default\n\ + Use one of [23|24|25|30|48|50|60], 24 is default\n\ -R - Repeat the first frame over the entire file (picture\n\ essence only, requires -c, -d)\n\ -S - Split Wave essence to stereo WAV files during extract.\n\ @@ -286,6 +286,7 @@ public: Rational PictureRate() { if ( picture_rate == 23 ) return EditRate_23_98; + if ( picture_rate == 24 ) return EditRate_24; if ( picture_rate == 25 ) return EditRate_25; if ( picture_rate == 30 ) return EditRate_30; if ( picture_rate == 48 ) return EditRate_48; @@ -298,6 +299,7 @@ public: const char* szPictureRate() { if ( picture_rate == 23 ) return "23.976"; + if ( picture_rate == 24 ) return "24"; if ( picture_rate == 25 ) return "25"; if ( picture_rate == 30 ) return "30"; if ( picture_rate == 48 ) return "48"; @@ -1356,6 +1358,7 @@ read_PCM_file(CommandOptions& Options) if ( ADesc.EditRate != EditRate_23_98 && ADesc.EditRate != EditRate_24 && ADesc.EditRate != EditRate_25 + && ADesc.EditRate != EditRate_30 && ADesc.EditRate != EditRate_48 && ADesc.EditRate != EditRate_50 && ADesc.EditRate != EditRate_60 ) |
