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_Speex.h')
-rw-r--r--src/thirdparty/MediaInfo/MediaInfo/Audio/File_Speex.h49
1 files changed, 0 insertions, 49 deletions
diff --git a/src/thirdparty/MediaInfo/MediaInfo/Audio/File_Speex.h b/src/thirdparty/MediaInfo/MediaInfo/Audio/File_Speex.h
deleted file mode 100644
index 9f38f3b92..000000000
--- a/src/thirdparty/MediaInfo/MediaInfo/Audio/File_Speex.h
+++ /dev/null
@@ -1,49 +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 Speex files
-//
-//+++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
-
-//---------------------------------------------------------------------------
-#ifndef MediaInfo_File_SpeexH
-#define MediaInfo_File_SpeexH
-//---------------------------------------------------------------------------
-
-//---------------------------------------------------------------------------
-#include "MediaInfo/File__Analyze.h"
-//---------------------------------------------------------------------------
-
-namespace MediaInfoLib
-{
-
-//***************************************************************************
-// Class File_Speex
-//***************************************************************************
-
-class File_Speex : public File__Analyze
-{
-public :
- File_Speex();
-
-private :
- //Buffer - Per element
- void Header_Parse();
- void Data_Parse();
-
- //Elements
- void Identification();
- void Comment();
-
- //Temp
- bool Identification_Done;
-};
-
-} //NameSpace
-
-#endif