diff options
author | Aimee Linden <aimee@lindenlab.com> | 2010-05-22 17:58:45 +0100 |
---|---|---|
committer | Aimee Linden <aimee@lindenlab.com> | 2010-05-22 17:58:45 +0100 |
commit | 5cf632aacbae683676c341a7f1470108cdf65b59 (patch) | |
tree | 5331c838ca51dc5f26dad0ff13e81e7c3252e5ec /indra/newview/llvoiceclient.h | |
parent | 05157c9985d955bb62c9ef897cee6298500c762d (diff) |
EXT-7138 WIP Voice Morphing - Go into stateCaptureBufferPaused as soon as the Voice Effects preview is opened.
Disconnecting from voice on hitting record was taking too long and causing the start of the voice recording to be cut off.
Diffstat (limited to 'indra/newview/llvoiceclient.h')
-rw-r--r-- | indra/newview/llvoiceclient.h | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/indra/newview/llvoiceclient.h b/indra/newview/llvoiceclient.h index 5caf26c492..2fa309d959 100644 --- a/indra/newview/llvoiceclient.h +++ b/indra/newview/llvoiceclient.h @@ -306,9 +306,9 @@ public: ////////////////////////////// /// @name Preview buffer //@{ - virtual void recordPreviewBuffer(bool enable) = 0; - virtual void playPreviewBuffer(bool enable, const LLUUID& effect_id = LLUUID::null) = 0; - virtual void clearPreviewBuffer() = 0; + virtual void enablePreviewBuffer(bool enable) = 0; + virtual void recordPreviewBuffer(bool record) = 0; + virtual void playPreviewBuffer(bool play, const LLUUID& effect_id = LLUUID::null) = 0; virtual bool isPreviewRecording() = 0; virtual bool isPreviewReady() = 0; |