Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/mpc-hc/mpc-hc.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
Diffstat (limited to 'src/thirdparty/MediaInfo/MediaInfo/Multiple/File_DcpAm.h')
-rw-r--r--src/thirdparty/MediaInfo/MediaInfo/Multiple/File_DcpAm.h65
1 files changed, 0 insertions, 65 deletions
diff --git a/src/thirdparty/MediaInfo/MediaInfo/Multiple/File_DcpAm.h b/src/thirdparty/MediaInfo/MediaInfo/Multiple/File_DcpAm.h
deleted file mode 100644
index 02e75379e..000000000
--- a/src/thirdparty/MediaInfo/MediaInfo/Multiple/File_DcpAm.h
+++ /dev/null
@@ -1,65 +0,0 @@
-/* Copyright (c) MediaArea.net SARL. All Rights Reserved.
- *
- * Use of this source code is governed by a BSD-style license that can
- * be found in the License.html file in the root of the source tree.
- */
-
-//+++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
-//
-// Information about DCP AssetMap files
-//
-//+++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
-
-//---------------------------------------------------------------------------
-#ifndef MediaInfo_File_DcpAmH
-#define MediaInfo_File_DcpAmH
-//---------------------------------------------------------------------------
-
-//---------------------------------------------------------------------------
-#include "MediaInfo/File__Analyze.h"
-#include "MediaInfo/Multiple/File_DcpPkl.h"
-//---------------------------------------------------------------------------
-
-namespace MediaInfoLib
-{
-
-class File__ReferenceFilesHelper;
-
-//***************************************************************************
-// Class File_DcpAm
-//***************************************************************************
-
-class File_DcpAm : public File__Analyze
-{
-public :
- //Constructor/Destructor
- File_DcpAm();
- ~File_DcpAm();
-
- //Streams
- File_DcpPkl::streams Streams;
-
-private :
- //Streams management
- void Streams_Finish ();
-
- //Buffer - Global
- #if MEDIAINFO_SEEK
- size_t Read_Buffer_Seek (size_t Method, int64u Value, int64u ID);
- #endif //MEDIAINFO_SEEK
-
- //Buffer - File header
- bool FileHeader_Begin();
-
- //PKL
- size_t PKL_Pos;
- void MergeFromPkl (File_DcpPkl::streams &StreamsToMerge);
-
- //Temp
- File__ReferenceFilesHelper* ReferenceFiles;
-};
-
-} //NameSpace
-
-#endif
-