Ignore:
Timestamp:
11/09/06 13:44:00 (17 years ago)
Author:
r2d
Message:
  • gapless playback should now be supported (not verified)
File:
1 edited

Legend:

Unmodified
Added
Removed
  • libmpcdec/branches/zorg/src/decoder.h

    r104 r107  
    6464    /// @name internal state variables
    6565    //@{
    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 = unknow
    72         mpc_uint32_t  LastFrameSamples;           // number of samples in the last frame
     66        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
    7373
    7474        mpc_uint32_t  samples_to_skip;
    75         mpc_uint32_t  DecodedFrames;
     75        mpc_uint32_t  decoded_frames;
    7676
    7777    // randomizer state variables
Note: See TracChangeset for help on using the changeset viewer.