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/Audio/File_Mpc.h')
-rw-r--r--src/thirdparty/MediaInfo/MediaInfo/Audio/File_Mpc.h50
1 files changed, 0 insertions, 50 deletions
diff --git a/src/thirdparty/MediaInfo/MediaInfo/Audio/File_Mpc.h b/src/thirdparty/MediaInfo/MediaInfo/Audio/File_Mpc.h
deleted file mode 100644
index d1b472aee..000000000
--- a/src/thirdparty/MediaInfo/MediaInfo/Audio/File_Mpc.h
+++ /dev/null
@@ -1,50 +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 Musepack files
-//
-//+++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
-
-//---------------------------------------------------------------------------
-#ifndef MediaInfo_File_MpcH
-#define MediaInfo_File_MpcH
-//---------------------------------------------------------------------------
-
-//---------------------------------------------------------------------------
-#include "MediaInfo/Tag/File__Tags.h"
-//---------------------------------------------------------------------------
-
-namespace MediaInfoLib
-{
-
-//***************************************************************************
-// Class File_Mpc
-//***************************************************************************
-
-class File_Mpc : public File__Analyze, public File__Tags_Helper
-{
-public :
- //Constructor/Destructor
- File_Mpc();
-
-private :
- //Streams management
- void Streams_Finish() {File__Tags_Helper::Streams_Finish();}
-
- //Buffer - Global
- void Read_Buffer_Continue() {File__Tags_Helper::Read_Buffer_Continue();}
-
- //Buffer - File header
- bool FileHeader_Begin();
- void FileHeader_Parse();
-};
-
-} //NameSpace
-
-#endif
-