diff options
author | callum@lindenlab.com <callum@lindenlab.com> | 2016-09-09 11:46:50 -0700 |
---|---|---|
committer | callum@lindenlab.com <callum@lindenlab.com> | 2016-09-09 11:46:50 -0700 |
commit | 921cfa355cfc5130a55d77690e2ff80e1f370dcb (patch) | |
tree | b3aefa674042f6717ffa895972c56266f6af1209 | |
parent | 4a95c4b36cff0cf21e8063441b39f6f7db403246 (diff) |
MAINT-6462 Built-in browser plays video vertically flipped
-rwxr-xr-x | indra/media_plugins/quicktime/media_plugin_quicktime.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/indra/media_plugins/quicktime/media_plugin_quicktime.cpp b/indra/media_plugins/quicktime/media_plugin_quicktime.cpp index 893fb738ce..b43598e4a5 100755 --- a/indra/media_plugins/quicktime/media_plugin_quicktime.cpp +++ b/indra/media_plugins/quicktime/media_plugin_quicktime.cpp @@ -922,7 +922,7 @@ void MediaPluginQuickTime::receiveMessage(const char *message_string) // note this apparently only has an effect when media is opened in 2D browser. // see https://jira.secondlife.com/browse/BUG-18252 - media flipped in 2D so flipping it back. - message.setValueBoolean("coords_opengl", false); // true == use OpenGL-style coordinates, false == (0,0) is upper left. + message.setValueBoolean("coords_opengl", true); // true == use OpenGL-style coordinates, false == (0,0) is upper left. message.setValueBoolean("allow_downsample", true); sendMessage(message); } |