Ignore:
Timestamp:
10/31/06 11:47:09 (18 years ago)
Author:
r2d
Message:
  • first SV8 decoding, it's VERY BADLY implemented. To enable decoding, MPC_LITTLE_ENDIAN must NOT be defined on 386 (so sv7 doesn't work in the same time). Was just to verify that there is no bug in encoding (found 1 !)
Location:
libmpcdec/branches/zorg/include/mpcdec
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • libmpcdec/branches/zorg/include/mpcdec/mpc_types.h

    r68 r81  
    5353typedef unsigned __int32 mpc_uint32_t;
    5454typedef __int64          mpc_int64_t;
     55typedef unsigned __int64 mpc_uint64_t;
    5556#define mpc_inline __inline
    5657#define MPC_LITTLE_ENDIAN
     
    6465typedef uint32_t mpc_uint32_t;
    6566typedef int64_t  mpc_int64_t;
     67typedef uint64_t  mpc_uint64_t;
    6668#define mpc_inline inline
    6769#endif
  • libmpcdec/branches/zorg/include/mpcdec/reader.h

    r70 r81  
    7878/// \param r p_reader handle to initialize
    7979/// \param filename input filename to attach to the reader
    80 mpc_status mpc_reader_init_stdio(mpc_reader *p_reader, char *filename);
     80mpc_status mpc_reader_init_stdio(mpc_reader *p_reader, const char *filename);
    8181
    8282/// Release reader with default stdio file reader implementation.
Note: See TracChangeset for help on using the changeset viewer.