diff options
| author | Carl Hetherington <cth@carlh.net> | 2017-01-11 13:55:39 +0000 |
|---|---|---|
| committer | Carl Hetherington <cth@carlh.net> | 2017-01-11 13:55:39 +0000 |
| commit | f3b0fb8717242dc705cb4f21a1338c365d3d4f75 (patch) | |
| tree | 57b5d90e38dbd55ce517c64090040810fa3ff72a /src/Dict.cpp | |
| parent | 592720c9716a260b72e5bff9760e733a066e2a97 (diff) | |
Make the IMP stuff usable.
Diffstat (limited to 'src/Dict.cpp')
| -rwxr-xr-x | src/Dict.cpp | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/src/Dict.cpp b/src/Dict.cpp index 7a64529..4efb45b 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()); |
