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/MediaInfo_File.cpp')
-rw-r--r--src/thirdparty/MediaInfo/MediaInfo/MediaInfo_File.cpp18
1 files changed, 18 insertions, 0 deletions
diff --git a/src/thirdparty/MediaInfo/MediaInfo/MediaInfo_File.cpp b/src/thirdparty/MediaInfo/MediaInfo/MediaInfo_File.cpp
index 4646d6fcc..59f97c423 100644
--- a/src/thirdparty/MediaInfo/MediaInfo/MediaInfo_File.cpp
+++ b/src/thirdparty/MediaInfo/MediaInfo/MediaInfo_File.cpp
@@ -200,6 +200,9 @@
#if defined(MEDIAINFO_AU_YES)
#include "MediaInfo/Audio/File_Au.h"
#endif
+#if defined(MEDIAINFO_CAF_YES)
+ #include "MediaInfo/Audio/File_Caf.h"
+#endif
#if defined(MEDIAINFO_DTS_YES)
#include "MediaInfo/Audio/File_Dts.h"
#endif
@@ -296,6 +299,9 @@
#if defined(MEDIAINFO_BMP_YES)
#include "MediaInfo/Image/File_Bmp.h"
#endif
+#if defined(MEDIAINFO_BPG_YES)
+ #include "MediaInfo/Image/File_Bpg.h"
+#endif
#if defined(MEDIAINFO_DDS_YES)
#include "MediaInfo/Image/File_Dds.h"
#endif
@@ -564,6 +570,9 @@ bool MediaInfo_Internal::SelectFromExtension (const String &Parser)
#if defined(MEDIAINFO_AU_YES)
else if (Parser==__T("Au")) Info=new File_Au();
#endif
+ #if defined(MEDIAINFO_CAF_YES)
+ else if (Parser==__T("Caf")) Info=new File_Caf();
+ #endif
#if defined(MEDIAINFO_DTS_YES)
else if (Parser==__T("Dts")) Info=new File_Dts();
#endif
@@ -657,6 +666,9 @@ bool MediaInfo_Internal::SelectFromExtension (const String &Parser)
#if defined(MEDIAINFO_BMP_YES)
else if (Parser==__T("Bmp")) Info=new File_Bmp();
#endif
+ #if defined(MEDIAINFO_BPG_YES)
+ else if (Parser==__T("Bpg")) Info=new File_Bpg();
+ #endif
#if defined(MEDIAINFO_DDS_YES)
else if (Parser==__T("Dds")) Info=new File_Dds();
#endif
@@ -918,6 +930,9 @@ int MediaInfo_Internal::ListFormats(const String &File_Name)
#if defined(MEDIAINFO_AU_YES)
delete Info; Info=new File_Au(); if (((Reader_File*)Reader)->Format_Test_PerParser(this, File_Name)>0) return 1;
#endif
+ #if defined(MEDIAINFO_CAF_YES)
+ delete Info; Info=new File_Caf(); if (((Reader_File*)Reader)->Format_Test_PerParser(this, File_Name)>0) return 1;
+ #endif
#if defined(MEDIAINFO_DTS_YES)
delete Info; Info=new File_Dts(); if (((Reader_File*)Reader)->Format_Test_PerParser(this, File_Name)>0) return 1;
#endif
@@ -1007,6 +1022,9 @@ int MediaInfo_Internal::ListFormats(const String &File_Name)
#if defined(MEDIAINFO_BMP_YES)
delete Info; Info=new File_Bmp(); if (((Reader_File*)Reader)->Format_Test_PerParser(this, File_Name)>0) return 1;
#endif
+ #if defined(MEDIAINFO_BPG_YES)
+ delete Info; Info=new File_Bpg(); if (((Reader_File*)Reader)->Format_Test_PerParser(this, File_Name)>0) return 1;
+ #endif
#if defined(MEDIAINFO_DDS_YES)
delete Info; Info=new File_Dds(); if (((Reader_File*)Reader)->Format_Test_PerParser(this, File_Name)>0) return 1;
#endif