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_Caf.h')
-rw-r--r--src/thirdparty/MediaInfo/MediaInfo/Audio/File_Caf.h55
1 files changed, 0 insertions, 55 deletions
diff --git a/src/thirdparty/MediaInfo/MediaInfo/Audio/File_Caf.h b/src/thirdparty/MediaInfo/MediaInfo/Audio/File_Caf.h
deleted file mode 100644
index 124f9aa33..000000000
--- a/src/thirdparty/MediaInfo/MediaInfo/Audio/File_Caf.h
+++ /dev/null
@@ -1,55 +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 Core Audio Format files
-//
-//+++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
-
-//---------------------------------------------------------------------------
-#ifndef MediaInfo_File_CafH
-#define MediaInfo_File_CafH
-//---------------------------------------------------------------------------
-
-//---------------------------------------------------------------------------
-#include "MediaInfo/File__Analyze.h"
-//---------------------------------------------------------------------------
-
-namespace MediaInfoLib
-{
-
-//***************************************************************************
-// Class File_Au
-//***************************************************************************
-
-class File_Caf : public File__Analyze
-{
-public :
- File_Caf();
-
-protected :
- //Buffer - File header
- bool FileHeader_Begin();
- void FileHeader_Parse ();
-
- //Buffer
- void Header_Parse();
- void Data_Parse();
-
- //Elements
- void data();
- void desc();
- void free();
- void info();
- void kuki();
- void pakt();
- void uuid();
-};
-
-} //NameSpace
-
-#endif