diff options
| author | jhurst <jhurst@cinecert.com> | 2011-07-27 21:01:49 +0000 |
|---|---|---|
| committer | jhurst <> | 2011-07-27 21:01:49 +0000 |
| commit | 23f5d8c9bae5c51cfa084a006a6f589cf97ae001 (patch) | |
| tree | 6d91ee70ecddf4b7d7f615799c94b47d5a4c98bc /src/asdcp-test.cpp | |
| parent | 0a815c035a2cc3742507aebd059d5c042a111527 (diff) | |
high frame rate stereo
Diffstat (limited to 'src/asdcp-test.cpp')
| -rwxr-xr-x | src/asdcp-test.cpp | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/src/asdcp-test.cpp b/src/asdcp-test.cpp index babbf4f..624c18b 100755 --- a/src/asdcp-test.cpp +++ b/src/asdcp-test.cpp @@ -298,6 +298,9 @@ public: if ( picture_rate == 48 ) return EditRate_48; if ( picture_rate == 50 ) return EditRate_50; if ( picture_rate == 60 ) return EditRate_60; + if ( picture_rate == 96 ) return EditRate_96; + if ( picture_rate == 100 ) return EditRate_100; + if ( picture_rate == 120 ) return EditRate_120; return EditRate_24; } @@ -311,6 +314,9 @@ public: if ( picture_rate == 48 ) return "48"; if ( picture_rate == 50 ) return "50"; if ( picture_rate == 60 ) return "60"; + if ( picture_rate == 96 ) return "96"; + if ( picture_rate == 100 ) return "100"; + if ( picture_rate == 120 ) return "120"; return "24"; } |
