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/Text/File_Teletext.cpp')
-rw-r--r--src/thirdparty/MediaInfo/MediaInfo/Text/File_Teletext.cpp88
1 files changed, 0 insertions, 88 deletions
diff --git a/src/thirdparty/MediaInfo/MediaInfo/Text/File_Teletext.cpp b/src/thirdparty/MediaInfo/MediaInfo/Text/File_Teletext.cpp
deleted file mode 100644
index 851646941..000000000
--- a/src/thirdparty/MediaInfo/MediaInfo/Text/File_Teletext.cpp
+++ /dev/null
@@ -1,88 +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.
- */
-
-//---------------------------------------------------------------------------
-// Pre-compilation
-#include "MediaInfo/PreComp.h"
-#ifdef __BORLANDC__
- #pragma hdrstop
-#endif
-//---------------------------------------------------------------------------
-
-//---------------------------------------------------------------------------
-#include "MediaInfo/Setup.h"
-//---------------------------------------------------------------------------
-
-//---------------------------------------------------------------------------
-#if defined(MEDIAINFO_DVBSUBTITLE_YES)
-//---------------------------------------------------------------------------
-
-//---------------------------------------------------------------------------
-#include "MediaInfo/Text/File_Teletext.h"
-#include "MediaInfo/MediaInfo_Config_MediaInfo.h"
-//---------------------------------------------------------------------------
-
-namespace MediaInfoLib
-{
-
-//***************************************************************************
-// Constructor/Destructor
-//***************************************************************************
-
-//---------------------------------------------------------------------------
-File_Teletext::File_Teletext()
-:File__Analyze()
-{
- //Configuration
- ParserName=__T("Teletext");
- #if MEDIAINFO_EVENTS
- ParserIDs[0]=MediaInfo_Parser_Teletext;
- #endif //MEDIAINFO_EVENTS
- #if MEDIAINFO_TRACE
- Trace_Layers_Update(8); //Stream
- #endif //MEDIAINFO_TRACE
- PTS_DTS_Needed=true;
- IsRawStream=true;
-}
-
-//---------------------------------------------------------------------------
-File_Teletext::~File_Teletext()
-{
-}
-
-//***************************************************************************
-// Streams management
-//***************************************************************************
-
-//---------------------------------------------------------------------------
-void File_Teletext::Streams_Fill()
-{
- Stream_Prepare(Stream_Text);
-}
-
-//---------------------------------------------------------------------------
-void File_Teletext::Streams_Finish()
-{
-}
-
-//***************************************************************************
-// Buffer - Global
-//***************************************************************************
-
-//---------------------------------------------------------------------------
-void File_Teletext::Read_Buffer_Continue()
-{
- Fill();
- Finish();
-}
-
-//***************************************************************************
-// C++
-//***************************************************************************
-
-} //NameSpace
-
-#endif //MEDIAINFO_DVBSUBTITLE_YES