diff options
author | Rick Pasetto <rick@lindenlab.com> | 2009-10-13 10:01:25 -0700 |
---|---|---|
committer | Rick Pasetto <rick@lindenlab.com> | 2009-10-13 10:01:25 -0700 |
commit | 64514057a4daabf068d37db80cbf83fd30e30cf7 (patch) | |
tree | d7e52cb1abc09d42ad49c384e6cc8cf47192874d /indra/llplugin/llpluginclassmedia.h | |
parent | 780719c14c6c2921eaf0a6021a4082b5486efafb (diff) | |
parent | f154a3a23f9dad1e4222ad0f90a40f4f79b38508 (diff) |
Merge from remote repo
Diffstat (limited to 'indra/llplugin/llpluginclassmedia.h')
-rw-r--r-- | indra/llplugin/llpluginclassmedia.h | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/indra/llplugin/llpluginclassmedia.h b/indra/llplugin/llpluginclassmedia.h index 97f2a11ef2..697deec353 100644 --- a/indra/llplugin/llpluginclassmedia.h +++ b/indra/llplugin/llpluginclassmedia.h @@ -231,6 +231,7 @@ public: F64 getCurrentTime(void) const { return mCurrentTime; }; F64 getDuration(void) const { return mDuration; }; F64 getCurrentPlayRate(void) { return mCurrentRate; }; + F64 getLoadedDuration(void) const { return mLoadedDuration; }; // Initialize the URL history of the plugin by sending // "init_history" message @@ -339,6 +340,7 @@ protected: F64 mCurrentTime; F64 mDuration; F64 mCurrentRate; + F64 mLoadedDuration; }; |