diff options
author | Jacek Antonelli | 2008-08-15 23:44:58 -0500 |
---|---|---|
committer | Jacek Antonelli | 2008-08-15 23:44:58 -0500 |
commit | 089fc07d207c71ce1401e72f09c31ad8c45872e2 (patch) | |
tree | 0028955add042c6f45b47a7b774adeeac9c592cb /linden/indra/llaudio/llaudiodecodemgr.cpp | |
parent | Second Life viewer sources 1.16.0.5 (diff) | |
download | meta-impy-089fc07d207c71ce1401e72f09c31ad8c45872e2.zip meta-impy-089fc07d207c71ce1401e72f09c31ad8c45872e2.tar.gz meta-impy-089fc07d207c71ce1401e72f09c31ad8c45872e2.tar.bz2 meta-impy-089fc07d207c71ce1401e72f09c31ad8c45872e2.tar.xz |
Second Life viewer sources 1.17.0.12
Diffstat (limited to 'linden/indra/llaudio/llaudiodecodemgr.cpp')
-rw-r--r-- | linden/indra/llaudio/llaudiodecodemgr.cpp | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/linden/indra/llaudio/llaudiodecodemgr.cpp b/linden/indra/llaudio/llaudiodecodemgr.cpp index 0dbc64f..ffd115a 100644 --- a/linden/indra/llaudio/llaudiodecodemgr.cpp +++ b/linden/indra/llaudio/llaudiodecodemgr.cpp | |||
@@ -73,7 +73,6 @@ public: | |||
73 | }; | 73 | }; |
74 | 74 | ||
75 | LLVorbisDecodeState(const LLUUID &uuid, const LLString &out_filename); | 75 | LLVorbisDecodeState(const LLUUID &uuid, const LLString &out_filename); |
76 | virtual ~LLVorbisDecodeState(); | ||
77 | 76 | ||
78 | BOOL initDecode(); | 77 | BOOL initDecode(); |
79 | BOOL decodeSection(); // Return TRUE if done. | 78 | BOOL decodeSection(); // Return TRUE if done. |
@@ -85,7 +84,10 @@ public: | |||
85 | BOOL isValid() const { return mValid; } | 84 | BOOL isValid() const { return mValid; } |
86 | BOOL isDone() const { return mDone; } | 85 | BOOL isDone() const { return mDone; } |
87 | const LLUUID &getUUID() const { return mUUID; } | 86 | const LLUUID &getUUID() const { return mUUID; } |
87 | |||
88 | protected: | 88 | protected: |
89 | virtual ~LLVorbisDecodeState(); | ||
90 | |||
89 | BOOL mValid; | 91 | BOOL mValid; |
90 | BOOL mDone; | 92 | BOOL mDone; |
91 | LLAtomicS32 mBytesRead; | 93 | LLAtomicS32 mBytesRead; |