Changeset 131 for libmpc/branches/r2d/include
- Timestamp:
- 11/14/06 18:26:14 (18 years ago)
- Location:
- libmpc/branches/r2d/include
- Files:
-
- 2 edited
- 1 moved
Legend:
- Unmodified
- Added
- Removed
-
libmpc/branches/r2d/include/mpcdec/mpcdec.h
r107 r131 58 58 typedef struct mpc_frame_info_t { 59 59 mpc_uint32_t samples; // number of samples in the frame 60 mpc_uint32_t bits; // number of bits consumed by this frame 60 61 MPC_SAMPLE_FORMAT * buffer; // frame samples buffer (size = samples * channels * sizeof(MPC_SAMPLE_FORMAT) 61 62 } mpc_frame_info; -
libmpc/branches/r2d/include/mpcdec/streaminfo.h
r117 r131 58 58 mpc_uint32_t sample_freq; ///< Sample frequency of stream 59 59 mpc_uint32_t channels; ///< Number of channels in stream 60 mpc_streaminfo_off_t header_position; ///< Byte offset of position of header in stream61 60 mpc_uint32_t stream_version; ///< Streamversion of stream 62 61 mpc_uint32_t bitrate; ///< Bitrate of stream file (in bps) 63 62 double average_bitrate; ///< Average bitrate of stream (in bits/sec) 64 mpc_uint32_t frames; ///< Number of frames in stream65 mpc_int64_t pcm_samples; ///< Approximate number of pcm samples in stream66 63 mpc_uint32_t max_band; ///< Maximum band-index used in stream (0...31) 67 64 mpc_uint32_t ms; ///< Mid/side stereo (0: off, 1: on) … … 81 78 //@{ 82 79 mpc_uint32_t is_true_gapless; ///< True gapless? (0: no, 1: yes) 83 mpc_uint 32_t last_frame_samples; ///< Number of valid samples within last frame80 mpc_uint64_t samples; ///< Number of samples in the stream 84 81 //@} 85 82 … … 93 90 //@} 94 91 92 93 mpc_streaminfo_off_t header_position; ///< Byte offset of position of header in stream 95 94 mpc_streaminfo_off_t tag_offset; ///< Offset to file tags 96 95 mpc_streaminfo_off_t total_file_length; ///< Total length of underlying file
Note: See TracChangeset
for help on using the changeset viewer.