summaryrefslogtreecommitdiff
path: root/src/Dict.cpp
diff options
context:
space:
mode:
authorCarl Hetherington <cth@carlh.net>2017-01-11 13:55:39 +0000
committerCarl Hetherington <cth@carlh.net>2019-12-03 17:01:32 +0100
commitab0c4cc3b599bf8e8bb21c81f0418b8aa4922be3 (patch)
treebad76f376ae17ca6b956d3064b30348b0899468d /src/Dict.cpp
parent04cf4482e9bcd5329f717f4ccffd94ff3e751e2a (diff)
Make the IMP stuff usable.
Diffstat (limited to 'src/Dict.cpp')
-rwxr-xr-xsrc/Dict.cpp6
1 files changed, 3 insertions, 3 deletions
diff --git a/src/Dict.cpp b/src/Dict.cpp
index 639e40f..9747b9d 100755
--- a/src/Dict.cpp
+++ b/src/Dict.cpp
@@ -32,7 +32,7 @@ THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
#include "KM_mutex.h"
#include "KM_log.h"
-#include "KLV.h"
+#include <asdcp/KLV.h>
#include "MDD.cpp"
//------------------------------------------------------------------------------------------
@@ -257,7 +257,7 @@ ASDCP::Dictionary::FindUL(const byte_t* ul_buf) const
{
assert(m_MDD_Table[0].name[0]);
std::map<UL, ui32_t>::const_iterator i = m_md_lookup.find(UL(ul_buf));
-
+
if ( i == m_md_lookup.end() )
{
byte_t tmp_ul[SMPTE_UL_LENGTH];
@@ -284,7 +284,7 @@ ASDCP::Dictionary::FindSymbol(const std::string& str) const
{
assert(m_MDD_Table[0].name[0]);
std::map<std::string, ui32_t>::const_iterator i = m_md_sym_lookup.find(str);
-
+
if ( i == m_md_sym_lookup.end() )
{
Kumu::DefaultLogSink().Warn("UL Dictionary: unknown symbol: %s\n", str.c_str());