summaryrefslogtreecommitdiff
path: root/src/h__Reader.cpp
diff options
context:
space:
mode:
authorjhurst <jhurst@cinecert.com>2011-11-30 22:45:39 +0000
committerjhurst <>2011-11-30 22:45:39 +0000
commite69fe859d8723724ac972bb70de51f8c6ce1699a (patch)
tree095b8c571e1b628b3f55e249ad5a83ea8456d8ad /src/h__Reader.cpp
parent289216de368bb6456b2f5e5dc6d4c38abac2b0d9 (diff)
oopsie
Diffstat (limited to 'src/h__Reader.cpp')
-rwxr-xr-xsrc/h__Reader.cpp6
1 files changed, 3 insertions, 3 deletions
diff --git a/src/h__Reader.cpp b/src/h__Reader.cpp
index d466500..62fa834 100755
--- a/src/h__Reader.cpp
+++ b/src/h__Reader.cpp
@@ -303,14 +303,14 @@ ASDCP::h__Reader::ReadEKLVPacket(ui32_t FrameNum, ui32_t SequenceNum, ASDCP::Fra
return RESULT_FORMAT;
// test essence UL
- if ( UL(ess_p).MatchIgnoreStream(EssenceUL) ) // ignore the stream number
+ if ( ! UL(ess_p).MatchIgnoreStream(EssenceUL) ) // ignore the stream number
{
char strbuf[IntBufferLen];
const MDDEntry* Entry = m_Dict->FindUL(Key.Value());
if ( Entry == 0 )
- DefaultLogSink().Warn("Unexpected Essence UL found: %s.\n", Key.EncodeString(strbuf, IntBufferLen));
+ DefaultLogSink().Warn("Unexpected Encrypted Essence UL found: %s.\n", Key.EncodeString(strbuf, IntBufferLen));
else
- DefaultLogSink().Warn("Unexpected Essence UL found: %s.\n", Entry->name);
+ DefaultLogSink().Warn("Unexpected Encrypted Essence UL found: %s.\n", Entry->name);
return RESULT_FORMAT;
}
ess_p += SMPTE_UL_LENGTH;