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/Image/File_Dds.h')
-rw-r--r--src/thirdparty/MediaInfo/MediaInfo/Image/File_Dds.h66
1 files changed, 0 insertions, 66 deletions
diff --git a/src/thirdparty/MediaInfo/MediaInfo/Image/File_Dds.h b/src/thirdparty/MediaInfo/MediaInfo/Image/File_Dds.h
deleted file mode 100644
index 5871ed0eb..000000000
--- a/src/thirdparty/MediaInfo/MediaInfo/Image/File_Dds.h
+++ /dev/null
@@ -1,66 +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 DDS (DirectDraw Surface) files
-//
-//+++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
-
-//---------------------------------------------------------------------------
-#ifndef MediaInfo_File_DdsH
-#define MediaInfo_File_DdsH
-//---------------------------------------------------------------------------
-
-//---------------------------------------------------------------------------
-#include "MediaInfo/File__Analyze.h"
-//---------------------------------------------------------------------------
-
-namespace MediaInfoLib
-{
-
-//***************************************************************************
-// Class File_Dds
-//***************************************************************************
-
-class File_Dds : public File__Analyze
-{
-public :
- //Constructor/Destructor
- File_Dds();
-
-private :
- //Streams management
- void Streams_Accept();
-
- //Buffer - File header
- bool FileHeader_Begin();
- void FileHeader_Parse();
-
- //Buffer - Demux
- #if MEDIAINFO_DEMUX
- bool Demux_UnpacketizeContainer_Test() {return Demux_UnpacketizeContainer_Test_OneFramePerFile();}
- #endif //MEDIAINFO_DEMUX
-
- //Buffer - Global
- void Read_Buffer_Unsynched();
- #if MEDIAINFO_SEEK
- size_t Read_Buffer_Seek (size_t Method, int64u Value, int64u ID) {return Read_Buffer_Seek_OneFramePerFile(Method, Value, ID);}
- #endif //MEDIAINFO_SEEK
- void Read_Buffer_Continue ();
-
- // Temp
- int32u Flags;
- int32u Width;
- int32u Height;
- int32u Depth;
- int32u pfFlags;
- int32u FourCC;
-};
-
-} //NameSpace
-
-#endif