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_La.h')
-rw-r--r--src/thirdparty/MediaInfo/MediaInfo/Audio/File_La.h55
1 files changed, 0 insertions, 55 deletions
diff --git a/src/thirdparty/MediaInfo/MediaInfo/Audio/File_La.h b/src/thirdparty/MediaInfo/MediaInfo/Audio/File_La.h
deleted file mode 100644
index a373c528a..000000000
--- a/src/thirdparty/MediaInfo/MediaInfo/Audio/File_La.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.
- */
-
-//+++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
-//
-// Contributor: Lionel Duchateau, kurtnoise@free.fr
-//
-//+++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
-
-//---------------------------------------------------------------------------
-#ifndef MediaInfo_File_LaH
-#define MediaInfo_File_LaH
-//---------------------------------------------------------------------------
-
-//---------------------------------------------------------------------------
-#include "MediaInfo/Tag/File__Tags.h"
-//---------------------------------------------------------------------------
-
-namespace MediaInfoLib
-{
-
-//***************************************************************************
-// Class File_La
-//***************************************************************************
-
-class File_La : public File__Analyze, public File__Tags_Helper
-{
-public :
- //Constructor/Destructor
- File_La();
-
-private :
- //Streams management
- void Streams_Finish();
-
- //Buffer - File header
- bool FileHeader_Begin();
- void FileHeader_Parse();
-
- //Buffer - Global
- void Read_Buffer_Continue() {File__Tags_Helper::Read_Buffer_Continue();}
-
- //Temp
- int64u Duration;
- int64u UncompressedSize;
- bool seekable;
- bool high;
-};
-
-} //NameSpace
-
-#endif