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_M2ts.h')
-rw-r--r--src/thirdparty/MediaInfo/MediaInfo/Audio/File_Pcm_M2ts.h50
1 files changed, 0 insertions, 50 deletions
diff --git a/src/thirdparty/MediaInfo/MediaInfo/Audio/File_Pcm_M2ts.h b/src/thirdparty/MediaInfo/MediaInfo/Audio/File_Pcm_M2ts.h
deleted file mode 100644
index c7d932d94..000000000
--- a/src/thirdparty/MediaInfo/MediaInfo/Audio/File_Pcm_M2ts.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 PCM (from Blu-ray) streams
-//
-//+++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
-
-//---------------------------------------------------------------------------
-#ifndef MediaInfo_File_Pcm_M2tsH
-#define MediaInfo_File_Pcm_M2tsH
-//---------------------------------------------------------------------------
-
-//---------------------------------------------------------------------------
-#include "MediaInfo/File__Analyze.h"
-//---------------------------------------------------------------------------
-
-namespace MediaInfoLib
-{
-
-//***************************************************************************
-// Class File_Pcm_M2ts
-//***************************************************************************
-
-class File_Pcm_M2ts : public File__Analyze
-{
-public :
- //Constructor/Destructor
- File_Pcm_M2ts();
-
-private :
- //Streams management
- void Streams_Fill();
-
- //Buffer - Global
- void Read_Buffer_Continue ();
-
- //Temp
- int8u channel_assignment;
- int8u sampling_frequency;
- int8u bits_per_sample;
-};
-
-} //NameSpace
-
-#endif