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/MPEG2_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/MPEG2_Parser.cpp')
| -rwxr-xr-x | src/MPEG2_Parser.cpp | 9 |
1 files changed, 8 insertions, 1 deletions
diff --git a/src/MPEG2_Parser.cpp b/src/MPEG2_Parser.cpp index 8b79d51..3eefc96 100755 --- a/src/MPEG2_Parser.cpp +++ b/src/MPEG2_Parser.cpp @@ -44,6 +44,11 @@ const ui32_t VESReadSize = 4 * Kumu::Kilobyte; //------------------------------------------------------------------------------------------ +namespace ASDCP { + +namespace MPEG2 +{ + // enum ParserState_t { ST_INIT, @@ -365,7 +370,7 @@ public: // - any frame that begins with a picture header is either an I, B or P frame // and is assumed to contain a complete picture header and picture data -class ASDCP::MPEG2::Parser::h__Parser +class Parser::h__Parser { StreamParams m_ParamsDelegate; FrameParser m_ParserDelegate; @@ -388,6 +393,8 @@ public: Result_t FillVideoDescriptor(VideoDescriptor&); }; +} // namespace MPEG2 +} // namespace asdcp // Result_t |
