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/Video/File_Y4m.h')
-rw-r--r--src/thirdparty/MediaInfo/MediaInfo/Video/File_Y4m.h51
1 files changed, 0 insertions, 51 deletions
diff --git a/src/thirdparty/MediaInfo/MediaInfo/Video/File_Y4m.h b/src/thirdparty/MediaInfo/MediaInfo/Video/File_Y4m.h
deleted file mode 100644
index 8055c5d8a..000000000
--- a/src/thirdparty/MediaInfo/MediaInfo/Video/File_Y4m.h
+++ /dev/null
@@ -1,51 +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 YUV4MPEG2 files
-//
-//+++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
-
-//---------------------------------------------------------------------------
-#ifndef MediaInfo_Y4mH
-#define MediaInfo_Y4mH
-//---------------------------------------------------------------------------
-
-//---------------------------------------------------------------------------
-#include "MediaInfo/File__Analyze.h"
-//---------------------------------------------------------------------------
-
-namespace MediaInfoLib
-{
-
-//***************************************************************************
-// Class File_Y4m
-//***************************************************************************
-
-class File_Y4m : public File__Analyze
-{
-public :
- //Constructor/Destructor
- File_Y4m();
- ~File_Y4m();
-
-private :
- //Streams management
- void Streams_Accept();
- void Streams_Fill();
-
- //Buffer - File header
- bool FileHeader_Begin();
- void FileHeader_Parse();
-
- //Temp
- size_t HeaderEnd;
-};
-
-} //NameSpace
-
-#endif