Changeset 400 for libmpc/trunk/libmpcdec


Ignore:
Timestamp:
04/21/08 16:22:24 (17 years ago)
Author:
r2d
Message:

Limited libmpcdec exported symbols (only for autotools building because cmake builds libmpcdec as static).

Location:
libmpc/trunk/libmpcdec
Files:
3 edited

Legend:

Unmodified
Added
Removed
  • libmpc/trunk/libmpcdec/Makefile.am

    r232 r400  
    1313
    1414noinst_HEADERS = mpc_bits_reader.h
     15AM_CFLAGS = -fpic -fvisibility=hidden
  • libmpc/trunk/libmpcdec/mpc_bits_reader.h

    r342 r400  
    3535#define MAX_ENUM 32
    3636
    37 int mpc_bits_get_block(mpc_bits_reader * r, mpc_block * p_block);
     37MPC_API int mpc_bits_get_block(mpc_bits_reader * r, mpc_block * p_block);
    3838mpc_int32_t mpc_bits_golomb_dec(mpc_bits_reader * r, const mpc_uint_t k);
    3939unsigned int mpc_bits_get_size(mpc_bits_reader * r, mpc_uint64_t * p_size);
  • libmpc/trunk/libmpcdec/mpc_demux.c

    r390 r400  
    157157 * @return MPC_STATUS_FILE on errors of any kind
    158158 */
    159 mpc_int32_t mpc_demux_skip_id3v2(mpc_demux * d)
     159static mpc_int32_t mpc_demux_skip_id3v2(mpc_demux * d)
    160160{
    161161        mpc_uint8_t  tmp [4];
     
    203203}
    204204
    205 mpc_status mpc_demux_seek_init(mpc_demux * d)
     205static mpc_status mpc_demux_seek_init(mpc_demux * d)
    206206{
    207207        if (d->seek_table != 0)
Note: See TracChangeset for help on using the changeset viewer.