summaryrefslogtreecommitdiff
path: root/src/asdcp-info.cpp
diff options
context:
space:
mode:
authorjhurst <jhurst@cinecert.com>2014-05-14 20:21:00 +0000
committerjhurst <>2014-05-14 20:21:00 +0000
commit6de07d0a33aec56c8a650054b1b747768d696416 (patch)
tree2fff0dcfbb7828292415d9cb2e88bb809fa73d8e /src/asdcp-info.cpp
parentd034fac6412c03427ec1145e7171ec215542ab09 (diff)
less strict UL checking ignores version byte
Diffstat (limited to 'src/asdcp-info.cpp')
-rwxr-xr-xsrc/asdcp-info.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/asdcp-info.cpp b/src/asdcp-info.cpp
index 65edd09..cc8f139 100755
--- a/src/asdcp-info.cpp
+++ b/src/asdcp-info.cpp
@@ -477,7 +477,7 @@ public:
{
if ( last_stream_offset != 0 )
{
- ui64_t this_frame_size = entry.StreamOffset - last_stream_offset;
+ ui64_t this_frame_size = entry.StreamOffset - last_stream_offset - 20; // do not count the bytes that represent the KLV wrapping
total_frame_bytes += this_frame_size;
if ( this_frame_size > largest_frame )