forked from mia/Aegisub
Remove all references to QuickTime, as the QuickTime provider is long gone
Originally committed to SVN as r6513.
This commit is contained in:
parent
5f82f5b2d7
commit
5fd05762bd
8 changed files with 1 additions and 22 deletions
|
@ -25,7 +25,6 @@ PREDEFINED += \
|
||||||
WITH_OPENAL \
|
WITH_OPENAL \
|
||||||
WITH_PORTAUDIO \
|
WITH_PORTAUDIO \
|
||||||
WITH_PORTAUDIO2 \
|
WITH_PORTAUDIO2 \
|
||||||
WITH_PULSEAUDIO \
|
WITH_LIBPULSE \
|
||||||
WITH_QUICKTIME \
|
|
||||||
WITH_STARTUPLOG \
|
WITH_STARTUPLOG \
|
||||||
WITH_UNIVCHARDET
|
WITH_UNIVCHARDET
|
||||||
|
|
|
@ -14,7 +14,6 @@
|
||||||
@defgroup main_headers Main Headers
|
@defgroup main_headers Main Headers
|
||||||
@defgroup main_ui Main UI
|
@defgroup main_ui Main UI
|
||||||
@defgroup matroska Matroska support.
|
@defgroup matroska Matroska support.
|
||||||
@defgroup quicktime QuickTime support.
|
|
||||||
@defgroup scripting Scripting
|
@defgroup scripting Scripting
|
||||||
@defgroup secondary_ui Secondary UI
|
@defgroup secondary_ui Secondary UI
|
||||||
@defgroup spelling Spelling
|
@defgroup spelling Spelling
|
||||||
|
|
|
@ -16,7 +16,6 @@ Main
|
||||||
|
|
||||||
Library
|
Library
|
||||||
- @ref ffms
|
- @ref ffms
|
||||||
- @ref quicktime
|
|
||||||
- @ref matroska
|
- @ref matroska
|
||||||
|
|
||||||
Dialogues
|
Dialogues
|
||||||
|
|
|
@ -267,14 +267,6 @@ public:
|
||||||
/// @retval Any
|
/// @retval Any
|
||||||
virtual std::string PatchLevel()=0;
|
virtual std::string PatchLevel()=0;
|
||||||
|
|
||||||
/// QuickTime extensions
|
|
||||||
/// @return json::Array of extensions used
|
|
||||||
/// @retval A json::Array in the format of:
|
|
||||||
/// \verbatim
|
|
||||||
/// { "version", "name" }
|
|
||||||
/// \endverbatim
|
|
||||||
virtual std::string QuickTimeExt()=0;
|
|
||||||
|
|
||||||
/// Hardware model
|
/// Hardware model
|
||||||
/// @return Model
|
/// @return Model
|
||||||
/// @retval Any
|
/// @retval Any
|
||||||
|
|
|
@ -202,10 +202,6 @@ std::string Platform::PatchLevel() {
|
||||||
return "";
|
return "";
|
||||||
}
|
}
|
||||||
|
|
||||||
std::string Platform::QuickTimeExt() {
|
|
||||||
return "";
|
|
||||||
}
|
|
||||||
|
|
||||||
std::string Platform::HardwareModel() {
|
std::string Platform::HardwareModel() {
|
||||||
return "";
|
return "";
|
||||||
}
|
}
|
||||||
|
|
|
@ -86,10 +86,6 @@ std::string PlatformUnixOSX::PatchLevel() {
|
||||||
return "";
|
return "";
|
||||||
}
|
}
|
||||||
|
|
||||||
std::string PlatformUnixOSX::QuickTimeExt() {
|
|
||||||
return "";
|
|
||||||
}
|
|
||||||
|
|
||||||
std::string PlatformUnixOSX::HardwareModel() {
|
std::string PlatformUnixOSX::HardwareModel() {
|
||||||
char model[300];
|
char model[300];
|
||||||
size_t len = sizeof(model);
|
size_t len = sizeof(model);
|
||||||
|
|
|
@ -36,7 +36,6 @@ public:
|
||||||
virtual uint64_t Memory();
|
virtual uint64_t Memory();
|
||||||
|
|
||||||
virtual std::string PatchLevel();
|
virtual std::string PatchLevel();
|
||||||
virtual std::string QuickTimeExt();
|
|
||||||
virtual std::string HardwareModel();
|
virtual std::string HardwareModel();
|
||||||
|
|
||||||
// Unix Specific
|
// Unix Specific
|
||||||
|
|
|
@ -115,7 +115,6 @@ Report::Report() {
|
||||||
#ifdef __APPLE__
|
#ifdef __APPLE__
|
||||||
json::Object& osx = root["OS X"];
|
json::Object& osx = root["OS X"];
|
||||||
osx["Patch"] = p->PatchLevel();
|
osx["Patch"] = p->PatchLevel();
|
||||||
osx["QuickTime Extensions"] = p->QuickTimeExt();
|
|
||||||
osx["Model"] = p->HardwareModel();
|
osx["Model"] = p->HardwareModel();
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue