Ignore:
Timestamp:
08/12/06 16:21:35 (18 years ago)
Author:
zorg
Message:

Update to 1.2 (work in progress)

Location:
trunk/include/mpcdec
Files:
1 edited
1 moved

Legend:

Unmodified
Added
Removed
  • trunk/include/mpcdec/internal.h

    r1 r3  
    3333*/
    3434
    35 /// \file musepack_internal.h
    36 /// Definitions and structures used only internally by the libmusepack.
     35/// \file internal.h
     36/// Definitions and structures used only internally by the libmpcdec.
    3737
    38 #ifndef _musepack_internal_h
    39 #define _musepack_internal_h
     38#ifndef _mpcdec_internal_h
     39#define _mpcdec_internal_h
     40
    4041
    4142enum {
     
    4445
    4546/// Big/little endian 32 bit byte swapping routine.
    46 static inline
     47static __inline
    4748mpc_uint32_t swap32(mpc_uint32_t val) {
    4849    const unsigned char* src = (const unsigned char*)&val;
     
    5960
    6061/// helper functions used by multiple files
    61 mpc_uint32_t random_int(mpc_decoder *d); // in synth_filter.c
     62mpc_uint32_t mpc_random_int(mpc_decoder *d); // in synth_filter.c
    6263void mpc_decoder_initialisiere_quantisierungstabellen(mpc_decoder *d, double scale_factor);
    6364void mpc_decoder_synthese_filter_float(mpc_decoder *d, MPC_SAMPLE_FORMAT* OutData);
    6465
    65 #endif // _musepack_internal_h
     66#endif // _mpcdec_internal_h
    6667
Note: See TracChangeset for help on using the changeset viewer.