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_Pcm.h')
-rw-r--r--src/thirdparty/MediaInfo/MediaInfo/Audio/File_Pcm.h66
1 files changed, 0 insertions, 66 deletions
diff --git a/src/thirdparty/MediaInfo/MediaInfo/Audio/File_Pcm.h b/src/thirdparty/MediaInfo/MediaInfo/Audio/File_Pcm.h
deleted file mode 100644
index a120e614c..000000000
--- a/src/thirdparty/MediaInfo/MediaInfo/Audio/File_Pcm.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 PCM files
-//
-//+++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
-
-//---------------------------------------------------------------------------
-#ifndef MediaInfo_File_PcmH
-#define MediaInfo_File_PcmH
-//---------------------------------------------------------------------------
-
-//---------------------------------------------------------------------------
-#include "MediaInfo/File__Analyze.h"
-//---------------------------------------------------------------------------
-
-namespace MediaInfoLib
-{
-
-//***************************************************************************
-// Class File_Pcm
-//***************************************************************************
-
-class File_Pcm : public File__Analyze
-{
-public :
- //In
- int64u Frame_Count_Valid;
- ZenLib::Ztring Codec;
- int32u SamplingRate;
- int8u BitDepth;
- int8u BitDepth_Significant;
- int8u Channels;
- int8u Endianness;
- int8u Sign;
-
- //Buffer - Global
- void Read_Buffer_Continue ();
- #if MEDIAINFO_DEMUX
- int64u Frame_Count_Valid_Demux;
- #endif //MEDIAINFO_DEMUX
-
- //Constructor/Destructor
- File_Pcm();
-
-private :
- //Streams management
- void Streams_Fill();
- void Streams_Finish();
-
- //Buffer - File header
- bool FileHeader_Begin();
-
- //Buffer - Per element
- void Header_Parse();
- void Data_Parse();
-};
-
-} //NameSpace
-
-#endif