CVS: main/libac3 Makefile,1.8,1.9 coeff.c,1.1.1.1,1.2 imdct.c,1.3,1.4
Update of /cvsroot/mplayer/main/libac3 In directory usw-pr-cvs1:/tmp/cvs-serv25466/main/libac3 Modified Files: Makefile coeff.c imdct.c Log Message: Minor improvements and gcc-3.0 (unstable) compilation fixes Index: Makefile =================================================================== RCS file: /cvsroot/mplayer/main/libac3/Makefile,v retrieving revision 1.8 retrieving revision 1.9 diff -C2 -r1.8 -r1.9 *** Makefile 2001/06/04 19:33:28 1.8 --- Makefile 2001/06/09 08:50:48 1.9 *************** *** 7,13 **** OBJS = bit_allocate.o bitstream.o coeff.o crc.o debug.o decode.o dither.o exponent.o imdct.o parse.o rematrix.o sanity_check.o srfft.o stats.o $(OPTIONAL_OBJS) # OBJS = $(SRCS:.c=.o) ! #WARNING: Please don't remove this -O2 key. It should overwrite any other ! # -Ox keys. I know this is an inconvenience, but I'll fix it later! ! CFLAGS = $(OPTFLAGS) -O2 -I. -I.. -DHAVE_CONFIG_H .SUFFIXES: .c .o --- 7,11 ---- OBJS = bit_allocate.o bitstream.o coeff.o crc.o debug.o decode.o dither.o exponent.o imdct.o parse.o rematrix.o sanity_check.o srfft.o stats.o $(OPTIONAL_OBJS) # OBJS = $(SRCS:.c=.o) ! CFLAGS = $(OPTFLAGS) -I. -I.. -DHAVE_CONFIG_H .SUFFIXES: .c .o Index: coeff.c =================================================================== RCS file: /cvsroot/mplayer/main/libac3/coeff.c,v retrieving revision 1.1.1.1 retrieving revision 1.2 diff -C2 -r1.1.1.1 -r1.2 *** coeff.c 2001/02/24 20:29:35 1.1.1.1 --- coeff.c 2001/06/09 08:50:48 1.2 *************** *** 242,246 **** static int32_t q_2_pointer; static int32_t q_4_pointer; ! static float __inline__ coeff_get_float(uint16_t bap, uint16_t dithflag, uint16_t exp); --- 242,246 ---- static int32_t q_2_pointer; static int32_t q_4_pointer; ! __inline__ static float coeff_get_float(uint16_t bap, uint16_t dithflag, uint16_t exp); *************** *** 301,305 **** **/ ! static float inline coeff_get_float (uint16_t bap, uint16_t dithflag, uint16_t exp) { uint16_t dummy = 0; --- 301,305 ---- **/ ! __inline__ static float coeff_get_float (uint16_t bap, uint16_t dithflag, uint16_t exp) { uint16_t dummy = 0; Index: imdct.c =================================================================== RCS file: /cvsroot/mplayer/main/libac3/imdct.c,v retrieving revision 1.3 retrieving revision 1.4 diff -C2 -r1.3 -r1.4 *** imdct.c 2001/05/31 17:58:56 1.3 --- imdct.c 2001/06/09 08:50:48 1.4 *************** *** 37,42 **** #endif - void imdct_do_256 (float data[],float delay[]); - void imdct_do_512 (float data[],float delay[]); void downmix_3f_2r_to_2ch (float *samples, dm_par_t * dm_par); void downmix_3f_1r_to_2ch (float *samples, dm_par_t * dm_par); --- 37,40 ---- _______________________________________________ Mplayer-cvslog mailing list Mplayer-cvslog@lists.sourceforge.net http://lists.sourceforge.net/lists/listinfo/mplayer-cvslog
participants (1)
-
Nick Kurshev