Remove all references to QuickTime, as the QuickTime provider is long gone

Originally committed to SVN as r6513.
This commit is contained in:
Thomas Goyne 2012-02-23 19:28:29 +00:00
parent 5f82f5b2d7
commit 5fd05762bd
8 changed files with 1 additions and 22 deletions

View File

@ -25,7 +25,6 @@ PREDEFINED += \
WITH_OPENAL \
WITH_PORTAUDIO \
WITH_PORTAUDIO2 \
WITH_PULSEAUDIO \
WITH_QUICKTIME \
WITH_LIBPULSE \
WITH_STARTUPLOG \
WITH_UNIVCHARDET

View File

@ -14,7 +14,6 @@
@defgroup main_headers Main Headers
@defgroup main_ui Main UI
@defgroup matroska Matroska support.
@defgroup quicktime QuickTime support.
@defgroup scripting Scripting
@defgroup secondary_ui Secondary UI
@defgroup spelling Spelling

View File

@ -16,7 +16,6 @@ Main
Library
- @ref ffms
- @ref quicktime
- @ref matroska
Dialogues

View File

@ -267,14 +267,6 @@ public:
/// @retval Any
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
/// @return Model
/// @retval Any

View File

@ -202,10 +202,6 @@ std::string Platform::PatchLevel() {
return "";
}
std::string Platform::QuickTimeExt() {
return "";
}
std::string Platform::HardwareModel() {
return "";
}

View File

@ -86,10 +86,6 @@ std::string PlatformUnixOSX::PatchLevel() {
return "";
}
std::string PlatformUnixOSX::QuickTimeExt() {
return "";
}
std::string PlatformUnixOSX::HardwareModel() {
char model[300];
size_t len = sizeof(model);

View File

@ -36,7 +36,6 @@ public:
virtual uint64_t Memory();
virtual std::string PatchLevel();
virtual std::string QuickTimeExt();
virtual std::string HardwareModel();
// Unix Specific

View File

@ -115,7 +115,6 @@ Report::Report() {
#ifdef __APPLE__
json::Object& osx = root["OS X"];
osx["Patch"] = p->PatchLevel();
osx["QuickTime Extensions"] = p->QuickTimeExt();
osx["Model"] = p->HardwareModel();
#endif