Changeset 163


Ignore:
Timestamp:
12/19/06 12:08:38 (17 years ago)
Author:
r2d
Message:
  • removed warning / error in mpcdec compilation
Location:
libmpc/branches/r2d/mpcdec
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • libmpc/branches/r2d/mpcdec/Makefile.am

    r137 r163  
    33bin_PROGRAMS = mpcdec
    44mpcdec_SOURCES = mpcdec.c
     5mpcdec_LDADD = $(top_builddir)/libwavformat/libwavformat.a\
     6        $(top_builddir)/libmpcdec/libmpcdec.la
  • libmpc/branches/r2d/mpcdec/mpcdec.c

    r162 r163  
    9999    while(MPC_TRUE)
    100100    {
    101         mpc_frame_info frame; mpc_uint32_t samples;
     101        mpc_frame_info frame;
    102102
    103103        frame.buffer = sample_buffer;
     
    118118    total_samples = (mpc_uint32_t) ((double) total_samples * CLOCKS_PER_SEC * 100 / (si.sample_freq * sum));
    119119    printf("decoded in %u ms (%u.%02ux)\n",
    120            sum * 1000 / CLOCKS_PER_SEC,
     120                   (unsigned int) (sum * 1000 / CLOCKS_PER_SEC),
    121121           total_samples / 100,
    122122           total_samples % 100
Note: See TracChangeset for help on using the changeset viewer.