diff options
| author | simon <none@none> | 2014-05-07 15:28:13 -0700 | 
|---|---|---|
| committer | simon <none@none> | 2014-05-07 15:28:13 -0700 | 
| commit | a5568f942b449e48cad71e92acd67eaa22dd5e5d (patch) | |
| tree | f266b99c9663fda8001cbde48aa5a6b1b9d7db68 /indra/media_plugins | |
| parent | 80a134ffcc68b277c10cc79dc9c7ca073148b41e (diff) | |
| parent | dc4c184696b308b8f60fa1dd751b35e22bd47d62 (diff) | |
Merge downstream version 3.7.8 code
Diffstat (limited to 'indra/media_plugins')
4 files changed, 22 insertions, 18 deletions
| diff --git a/indra/media_plugins/quicktime/media_plugin_quicktime.cpp b/indra/media_plugins/quicktime/media_plugin_quicktime.cpp index 2dd97a9ba7..93d2a8fa6e 100755 --- a/indra/media_plugins/quicktime/media_plugin_quicktime.cpp +++ b/indra/media_plugins/quicktime/media_plugin_quicktime.cpp @@ -28,18 +28,10 @@  #include "linden_common.h" -#include "llgl.h" - -#include "llplugininstance.h" -#include "llpluginmessage.h" -#include "llpluginmessageclasses.h" -#include "media_plugin_base.h" - -#if LL_QUICKTIME_ENABLED -  #if defined(LL_DARWIN)  	#include <QuickTime/QuickTime.h>  #elif defined(LL_WINDOWS) +	#include "llwin32headers.h"  	#include "MacTypes.h"  	#include "QTML.h"  	#include "Movies.h" @@ -48,6 +40,17 @@  	#include "QTLoadLibraryUtils.h"  #endif +#include "llgl.h" + +#include "llplugininstance.h" +#include "llpluginmessage.h" +#include "llpluginmessageclasses.h" +#include "media_plugin_base.h" + +#if LL_QUICKTIME_ENABLED + + +  // TODO: Make sure that the only symbol exported from this library is LLPluginInitEntryPoint  ////////////////////////////////////////////////////////////////////////////////  // diff --git a/indra/media_plugins/webkit/mac_volume_catcher.cpp b/indra/media_plugins/webkit/mac_volume_catcher.cpp index cc94556413..73e5bf3da3 100755 --- a/indra/media_plugins/webkit/mac_volume_catcher.cpp +++ b/indra/media_plugins/webkit/mac_volume_catcher.cpp @@ -37,6 +37,7 @@  #include <QuickTime/QuickTime.h>  #include <AudioUnit/AudioUnit.h> +#include <list>  #if LL_DARWIN  #pragma GCC diagnostic ignored "-Wdeprecated-declarations" diff --git a/indra/media_plugins/webkit/media_plugin_webkit.cpp b/indra/media_plugins/webkit/media_plugin_webkit.cpp index 1812abd7d5..3edeef51e3 100755 --- a/indra/media_plugins/webkit/media_plugin_webkit.cpp +++ b/indra/media_plugins/webkit/media_plugin_webkit.cpp @@ -220,7 +220,7 @@ private:  		char cwd[ FILENAME_MAX ];	// I *think* this is defined on all platforms we use  		if (NULL == getcwd( cwd, FILENAME_MAX - 1 ))  		{ -			llwarns << "Couldn't get cwd - probably too long - failing to init." << llendl; +			LL_WARNS() << "Couldn't get cwd - probably too long - failing to init." << LL_ENDL;  			return false;  		}  		std::string application_dir = std::string( cwd ); @@ -380,13 +380,13 @@ private:  		url << std::setfill('0') << std::setw(2) << std::hex << int(mBackgroundB * 255.0f);  		url << "%22%3E%3C/body%3E%3C/html%3E"; -		//lldebugs << "data url is: " << url.str() << llendl; +		//LL_DEBUGS() << "data url is: " << url.str() << LL_ENDL;  		// always display loading overlay now  #if LLQTWEBKIT_API_VERSION >= 16  		LLQtWebKit::getInstance()->enableLoadingOverlay(mBrowserWindowId, true);  #else -		llwarns << "Ignoring enableLoadingOverlay() call (llqtwebkit version is too old)." << llendl; +		LL_WARNS() << "Ignoring enableLoadingOverlay() call (llqtwebkit version is too old)." << LL_ENDL;  #endif  		str.clear();  		str << "Loading overlay enabled = " << mEnableMediaPluginDebugging << " for mBrowserWindowId = " << mBrowserWindowId; @@ -426,7 +426,7 @@ private:  			break;  			default: -				llwarns << "Unknown cursor ID: " << (int)llqt_cursor << llendl; +				LL_WARNS() << "Unknown cursor ID: " << (int)llqt_cursor << LL_ENDL;  			break;  		} @@ -1326,7 +1326,7 @@ void MediaPluginWebKit::receiveMessage(const char *message_string)  				F32 factor = (F32)message_in.getValueReal("factor");  				LLQtWebKit::getInstance()->setPageZoomFactor(factor);  #else -				llwarns << "Ignoring setPageZoomFactor message (llqtwebkit version is too old)." << llendl; +				LL_WARNS() << "Ignoring setPageZoomFactor message (llqtwebkit version is too old)." << LL_ENDL;  #endif  			}  			else if(message_name == "clear_cache") @@ -1405,7 +1405,7 @@ void MediaPluginWebKit::receiveMessage(const char *message_string)  				bool val = message_in.getValueBoolean("show");  				LLQtWebKit::getInstance()->showWebInspector( val );  #else -				llwarns << "Ignoring showWebInspector message (llqtwebkit version is too old)." << llendl; +				LL_WARNS() << "Ignoring showWebInspector message (llqtwebkit version is too old)." << LL_ENDL;  #endif  			}  			else if(message_name == "ignore_ssl_cert_errors") @@ -1413,7 +1413,7 @@ void MediaPluginWebKit::receiveMessage(const char *message_string)  #if LLQTWEBKIT_API_VERSION >= 3  				LLQtWebKit::getInstance()->setIgnoreSSLCertErrors( message_in.getValueBoolean("ignore") );  #else -				llwarns << "Ignoring ignore_ssl_cert_errors message (llqtwebkit version is too old)." << llendl; +				LL_WARNS() << "Ignoring ignore_ssl_cert_errors message (llqtwebkit version is too old)." << LL_ENDL;  #endif  			}  			else if(message_name == "add_certificate_file_path") @@ -1421,7 +1421,7 @@ void MediaPluginWebKit::receiveMessage(const char *message_string)  #if LLQTWEBKIT_API_VERSION >= 6  				LLQtWebKit::getInstance()->setCAFile( message_in.getValue("path") );  #else -				llwarns << "Ignoring add_certificate_file_path message (llqtwebkit version is too old)." << llendl; +				LL_WARNS() << "Ignoring add_certificate_file_path message (llqtwebkit version is too old)." << LL_ENDL;  #endif  			}  			else if(message_name == "init_history") diff --git a/indra/media_plugins/winmmshim/winmm_shim.cpp b/indra/media_plugins/winmmshim/winmm_shim.cpp index 49a1c9dba3..78f7a9b0da 100755 --- a/indra/media_plugins/winmmshim/winmm_shim.cpp +++ b/indra/media_plugins/winmmshim/winmm_shim.cpp @@ -39,7 +39,7 @@ BOOL APIENTRY DllMain( HMODULE hModule,                         LPVOID lpReserved  					 )  { -	if (DLL_PROCESS_ATTACH == ul_reason_for_call) +	if (ul_reason_for_call == DLL_PROCESS_ATTACH)  	{  		InitializeCriticalSection(&sCriticalSection);  	} | 
