Changeset 107 for libmpcdec/branches/zorg/src/decoder.h
- Timestamp:
- 11/09/06 13:44:00 (18 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
libmpcdec/branches/zorg/src/decoder.h
r104 r107 64 64 /// @name internal state variables 65 65 //@{ 66 mpc_uint32_t SampleRate; // Sample frequency 67 mpc_uint32_t StreamVersion; // version of bitstream 68 mpc_uint32_t Max_Band; 69 mpc_uint32_t MS_used; // MS-coding used ? 70 mpc_uint32_t TrueGaplessPresent;71 mpc_uint32_t OverallFrames; // number of frames in the stream, 0 = unknow72 mpc_uint32_t LastFrameSamples; // number of samples in the last frame66 mpc_uint32_t stream_version; ///< Streamversion of stream 67 mpc_uint32_t max_band; ///< Maximum band-index used in stream (0...31) 68 mpc_uint32_t ms; ///< Mid/side stereo (0: off, 1: on) 69 mpc_uint32_t is_true_gapless; ///< True gapless? (0: no, 1: yes) 70 mpc_uint32_t frames; ///< Number of frames in stream 71 mpc_uint32_t last_frame_samples; ///< Number of valid samples within last frame 72 mpc_uint32_t channels; ///< Number of channels in stream 73 73 74 74 mpc_uint32_t samples_to_skip; 75 mpc_uint32_t DecodedFrames;75 mpc_uint32_t decoded_frames; 76 76 77 77 // randomizer state variables
Note: See TracChangeset
for help on using the changeset viewer.