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/JP2K_Sequence_Parser.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/JP2K_Sequence_Parser.cpp')
| -rwxr-xr-x | src/JP2K_Sequence_Parser.cpp | 8 |
1 files changed, 7 insertions, 1 deletions
diff --git a/src/JP2K_Sequence_Parser.cpp b/src/JP2K_Sequence_Parser.cpp index a8de925..ad8f0e9 100755 --- a/src/JP2K_Sequence_Parser.cpp +++ b/src/JP2K_Sequence_Parser.cpp @@ -42,7 +42,9 @@ using namespace ASDCP; //------------------------------------------------------------------------------------------ - + +namespace ASDCP { + class FileList : public std::list<std::string> { std::string m_DirName; @@ -89,6 +91,7 @@ public: return result; } }; +} // namespace asdcp //------------------------------------------------------------------------------------------ @@ -191,6 +194,8 @@ ASDCP::JP2K::SequenceParser::h__SequenceParser::OpenRead(const std::list<std::st } +namespace ASDCP { + // bool operator==(const ASDCP::JP2K::ImageComponent_t& lhs, const ASDCP::JP2K::ImageComponent_t& rhs) @@ -334,6 +339,7 @@ operator==(const ASDCP::JP2K::PictureDescriptor& lhs, const ASDCP::JP2K::Picture return true; } +} // namespace asdcp // ASDCP::Result_t |
