summaryrefslogtreecommitdiff
path: root/indra
diff options
context:
space:
mode:
authorcallum@lindenlab.com <callum@lindenlab.com>2016-09-09 11:46:50 -0700
committercallum@lindenlab.com <callum@lindenlab.com>2016-09-09 11:46:50 -0700
commit921cfa355cfc5130a55d77690e2ff80e1f370dcb (patch)
treeb3aefa674042f6717ffa895972c56266f6af1209 /indra
parent4a95c4b36cff0cf21e8063441b39f6f7db403246 (diff)
MAINT-6462 Built-in browser plays video vertically flipped
Diffstat (limited to 'indra')
-rwxr-xr-xindra/media_plugins/quicktime/media_plugin_quicktime.cpp2
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);
}