/* 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 Pro Tools session 10 files // //+++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ //--------------------------------------------------------------------------- #ifndef MediaInfo_File_PtxH #define MediaInfo_File_PtxH //--------------------------------------------------------------------------- //--------------------------------------------------------------------------- #include "MediaInfo/File__Analyze.h" #include "MediaInfo/File__HasReferences.h" //--------------------------------------------------------------------------- namespace MediaInfoLib { //*************************************************************************** // Class File_Ptx //*************************************************************************** class File_Ptx : public File__Analyze, File__HasReferences { public : //Constructor/Destructor File_Ptx(); private : //Streams management void Streams_Finish() {ReferenceFiles_Finish();} //Buffer - Global #if MEDIAINFO_SEEK size_t Read_Buffer_Seek (size_t Method, int64u Value, int64u ID) {return ReferenceFiles_Seek(Method, Value, ID);} #endif //MEDIAINFO_SEEK void Read_Buffer_Continue (); //Buffer - File header bool FileHeader_Begin(); static bool Is_FileName_Exception(const Ztring& FileName); }; } //NameSpace #endif