summaryrefslogtreecommitdiff
path: root/indra/llaudio/llaudiodecodemgr.h
diff options
context:
space:
mode:
authorSteven Bennetts <steve@lindenlab.com>2007-03-02 21:25:50 +0000
committerSteven Bennetts <steve@lindenlab.com>2007-03-02 21:25:50 +0000
commit4dabd9c0472deb49573fdafef2fa413e59703f19 (patch)
tree06c680d6a2047e03838d6548bccd26c7baf9d652 /indra/llaudio/llaudiodecodemgr.h
parentd4462963c6ba5db2088723bbedc7b60f1184c594 (diff)
merge release@58699 beta-1-14-0@58707 -> release
Diffstat (limited to 'indra/llaudio/llaudiodecodemgr.h')
-rw-r--r--indra/llaudio/llaudiodecodemgr.h12
1 files changed, 2 insertions, 10 deletions
diff --git a/indra/llaudio/llaudiodecodemgr.h b/indra/llaudio/llaudiodecodemgr.h
index ea1358b8e9..a72d63a228 100644
--- a/indra/llaudio/llaudiodecodemgr.h
+++ b/indra/llaudio/llaudiodecodemgr.h
@@ -19,7 +19,6 @@
class LLVFS;
class LLVorbisDecodeState;
-
class LLAudioDecodeMgr
{
public:
@@ -27,19 +26,12 @@ public:
~LLAudioDecodeMgr();
void processQueue(const F32 num_secs = 0.005);
-
- LLLinkedQueue<LLUUID> mDecodeQueue;
-
- LLVorbisDecodeState *mCurrentDecodep;
-
BOOL addDecodeRequest(const LLUUID &uuid);
void addAudioRequest(const LLUUID &uuid);
-
- S32 getRequestCount();
protected:
- LLLinkedQueue<LLUUID> mDownloadQueue;
- LLFrameTimer mCurrentTransferAge;
+ class Impl;
+ Impl* mImpl;
};
extern LLAudioDecodeMgr *gAudioDecodeMgrp;