diff options
| author | John Hurst <jhurst@cinecert.com> | 2021-08-26 20:42:53 -0700 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2021-08-26 20:42:53 -0700 |
| commit | b8c87905046423d7f04e9103ffb321a4d23870eb (patch) | |
| tree | 06ca1754874997abe9279e34b275ff5159e3d927 /src/KM_util.cpp | |
| parent | 1ff08641353a1ff1887f223dc01310cc0167d8fe (diff) | |
| parent | fdd28f8bb3608978e75b27c5410db447396f361b (diff) | |
Merge pull request #10 from DolbyLaboratories/dolby/atmos_storage/asdcplib_integration/definitions_into_namespace
Put definitions inside their corresponding namespaces
Diffstat (limited to 'src/KM_util.cpp')
| -rwxr-xr-x | src/KM_util.cpp | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/src/KM_util.cpp b/src/KM_util.cpp index da8d732..4c59c78 100755 --- a/src/KM_util.cpp +++ b/src/KM_util.cpp @@ -244,6 +244,9 @@ Kumu::DTrace_t::~DTrace_t() //------------------------------------------------------------------------------------------ +namespace Kumu +{ + const char fill = '='; const char* base64_chars = "ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz0123456789+/"; @@ -283,6 +286,7 @@ const byte_t decode_map[] = 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff }; +} // namespace Kumu // Convert a binary string to NULL-terminated UTF-8 hexadecimal, returns the buffer // if the binary buffer was large enough to hold the result. If the output buffer |
