diff options
Diffstat (limited to 'indra/llaudio/llaudiodecodemgr.h')
-rw-r--r-- | indra/llaudio/llaudiodecodemgr.h | 12 |
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; |