Changeset 24 for branches/zorg/include/mpcdec/decoder.h
- Timestamp:
- 09/17/06 19:35:17 (19 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
branches/zorg/include/mpcdec/decoder.h
r23 r24 45 45 46 46 #define MPC_SUPPORT_SV456 47 #define SCF_HACK 47 48 48 49 enum { … … 62 63 //@{ 63 64 65 mpc_uint32_t next; 64 66 mpc_uint32_t dword; /// currently decoded 32bit-word 65 67 mpc_uint32_t pos; /// bit-position within dword 66 mpc_uint32_t Speicher[MPC_DECODER_MEMSIZE]; /// read-buffer68 mpc_uint32_t *Speicher; /// read-buffer 67 69 mpc_uint32_t Zaehler; /// actual index within read-buffer 70 mpc_uint32_t Ring; 68 71 69 72 mpc_uint32_t samples_to_skip; … … 75 78 mpc_uint32_t DecodedFrames; 76 79 mpc_uint32_t OverallFrames; 80 mpc_uint32_t MaxDecodedFrames; // Maximum frames decoded (indicates usable seek table entries) 81 mpc_uint16_t SeekTableIndex; 82 mpc_uint32_t SeekTableCounter; 77 83 mpc_int32_t SampleRate; // Sample frequency 78 84 … … 105 111 //mpc_int32_t DSCF_Reference_R [32]; // holds last frames SCF 106 112 mpc_bool_t MS_Flag[32]; // MS used? 113 114 mpc_uint32_t* SeekTable; 115 mpc_bool_t Use_SeekTable; 116 mpc_bool_t Use_FastSeek; 117 mpc_bool_t Use_StaticSeekTable; 118 mpc_uint8_t SeekTable_Step; 119 mpc_uint32_t Max_SeekTable_Size; 120 107 121 #ifdef MPC_FIXED_POINT 108 122 mpc_uint8_t SCF_shift[256];
Note: See TracChangeset
for help on using the changeset viewer.