Changeset 311


Ignore:
Timestamp:
05/09/07 14:52:10 (17 years ago)
Author:
r2d
Message:

Removed end_silence to comply with spec

Location:
libmpc/trunk
Files:
4 edited

Legend:

Unmodified
Added
Removed
  • libmpc/trunk/include/mpc/streaminfo.h

    r220 r311  
    8080        mpc_uint64_t         samples;            ///< Number of samples in the stream
    8181        mpc_uint64_t         beg_silence;        ///< Number of samples that must not be played at the beginning of the stream
    82         mpc_uint64_t         end_silence;        ///< Number of samples that must not be played at the end of the stream
    8382    //@}
    8483
  • libmpc/trunk/libmpcdec/streaminfo.c

    r310 r311  
    9393                        tmp = "--Unstable--";
    9494
    95                 sprintf(si->encoder, "%s %u.%u build %u", tmp, major, minor, build);
     95                sprintf(si->encoder, "%s %u.%u.%u", tmp, major, minor, build);
    9696        }
    9797}
     
    195195        mpc_bits_get_size(&r, &si->samples);
    196196        mpc_bits_get_size(&r, &si->beg_silence);
    197         mpc_bits_get_size(&r, &si->end_silence);
    198197
    199198        si->is_true_gapless = 1;
  • libmpc/trunk/libmpcenc/encode_sv7.c

    r243 r311  
    115115                writeBits ( e, tmp[i], 8 );
    116116        writeBits ( e, 0, 8 ); // nb of samples to skip at beginning
    117         writeBits ( e, 0, 8 ); // nb of samples to skip at end
    118117
    119118        switch ( SampleFreq ) {
  • libmpc/trunk/mpcenc/config.h

    r308 r311  
    3232
    3333#define MPCENC_MAJOR 1
    34 #define MPCENC_MINOR 21
    35 #define MPCENC_BUILD 1
     34#define MPCENC_MINOR 23
     35#define MPCENC_BUILD 0
    3636
    3737/* end of config.h */
Note: See TracChangeset for help on using the changeset viewer.