summaryrefslogtreecommitdiffstats
path: root/core/Ac3Decoder.h
diff options
context:
space:
mode:
Diffstat (limited to 'core/Ac3Decoder.h')
-rw-r--r--core/Ac3Decoder.h47
1 files changed, 0 insertions, 47 deletions
diff --git a/core/Ac3Decoder.h b/core/Ac3Decoder.h
deleted file mode 100644
index f63206b12..000000000
--- a/core/Ac3Decoder.h
+++ /dev/null
@@ -1,47 +0,0 @@
-/* $Id: Ac3Decoder.h,v 1.11 2003/10/14 14:35:20 titer Exp $
-
- This file is part of the HandBrake source code.
- Homepage: <http://beos.titer.org/handbrake/>.
- It may be used under the terms of the GNU General Public License. */
-
-#ifndef HB_AC3_DECODER_H
-#define HB_AC3_DECODER_H
-
-#include "Common.h"
-
-class HBAc3Decoder
-{
- public:
- HBAc3Decoder( HBManager * manager,
- HBAudio * audio );
- ~HBAc3Decoder();
- bool Work();
-
- private:
- bool Lock();
- void Unlock();
- bool GetBytes( uint32_t size );
-
- HBManager * fManager;
- HBAudio * fAudio;
-
- HBLock * fLock;
- bool fUsed;
-
- /* liba52 */
- a52_state_t * fState;
- int fInFlags;
- int fOutFlags;
- float fSampleLevel;
-
- /* buffers */
- HBBuffer * fAc3Frame;
- HBBuffer * fAc3Buffer;
- uint32_t fPosInAc3Buffer;
- HBBuffer * fRawBuffer;
-
- float fPosition;
- int fFrameSize;
-};
-
-#endif