aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/linden/indra/llaudio/llaudiodecodemgr.h
diff options
context:
space:
mode:
Diffstat (limited to 'linden/indra/llaudio/llaudiodecodemgr.h')
-rw-r--r--linden/indra/llaudio/llaudiodecodemgr.h12
1 files changed, 2 insertions, 10 deletions
diff --git a/linden/indra/llaudio/llaudiodecodemgr.h b/linden/indra/llaudio/llaudiodecodemgr.h
index 3480004..aab7144 100644
--- a/linden/indra/llaudio/llaudiodecodemgr.h
+++ b/linden/indra/llaudio/llaudiodecodemgr.h
@@ -38,7 +38,6 @@
38class LLVFS; 38class LLVFS;
39class LLVorbisDecodeState; 39class LLVorbisDecodeState;
40 40
41
42class LLAudioDecodeMgr 41class LLAudioDecodeMgr
43{ 42{
44public: 43public:
@@ -46,19 +45,12 @@ public:
46 ~LLAudioDecodeMgr(); 45 ~LLAudioDecodeMgr();
47 46
48 void processQueue(const F32 num_secs = 0.005); 47 void processQueue(const F32 num_secs = 0.005);
49
50 LLLinkedQueue<LLUUID> mDecodeQueue;
51
52 LLVorbisDecodeState *mCurrentDecodep;
53
54 BOOL addDecodeRequest(const LLUUID &uuid); 48 BOOL addDecodeRequest(const LLUUID &uuid);
55 void addAudioRequest(const LLUUID &uuid); 49 void addAudioRequest(const LLUUID &uuid);
56
57 S32 getRequestCount();
58 50
59protected: 51protected:
60 LLLinkedQueue<LLUUID> mDownloadQueue; 52 class Impl;
61 LLFrameTimer mCurrentTransferAge; 53 Impl* mImpl;
62}; 54};
63 55
64extern LLAudioDecodeMgr *gAudioDecodeMgrp; 56extern LLAudioDecodeMgr *gAudioDecodeMgrp;