Changeset 3 for trunk/include/mpcdec/internal.h
- Timestamp:
- 08/12/06 16:21:35 (18 years ago)
- Location:
- trunk/include/mpcdec
- Files:
-
- 1 edited
- 1 moved
Legend:
- Unmodified
- Added
- Removed
-
trunk/include/mpcdec/internal.h
r1 r3 33 33 */ 34 34 35 /// \file musepack_internal.h36 /// Definitions and structures used only internally by the libm usepack.35 /// \file internal.h 36 /// Definitions and structures used only internally by the libmpcdec. 37 37 38 #ifndef _musepack_internal_h 39 #define _musepack_internal_h 38 #ifndef _mpcdec_internal_h 39 #define _mpcdec_internal_h 40 40 41 41 42 enum { … … 44 45 45 46 /// Big/little endian 32 bit byte swapping routine. 46 static inline47 static __inline 47 48 mpc_uint32_t swap32(mpc_uint32_t val) { 48 49 const unsigned char* src = (const unsigned char*)&val; … … 59 60 60 61 /// helper functions used by multiple files 61 mpc_uint32_t random_int(mpc_decoder *d); // in synth_filter.c62 mpc_uint32_t mpc_random_int(mpc_decoder *d); // in synth_filter.c 62 63 void mpc_decoder_initialisiere_quantisierungstabellen(mpc_decoder *d, double scale_factor); 63 64 void mpc_decoder_synthese_filter_float(mpc_decoder *d, MPC_SAMPLE_FORMAT* OutData); 64 65 65 #endif // _m usepack_internal_h66 #endif // _mpcdec_internal_h 66 67
Note: See TracChangeset
for help on using the changeset viewer.