Mercurial > libavcodec.hg
comparison Makefile @ 252:ddb1a0e94cf4 libavcodec
- Added PSNR feature to libavcodec and ffmpeg. By now just Y PSNR until I'm
sure it works ok. Also it's slow, so use it only when you _really_ need to
measure quality.
- Fix libavcodec Makefile to enable profiling.
author | pulento |
---|---|
date | Tue, 26 Feb 2002 22:14:27 +0000 |
parents | 73df666cacc7 |
children | 9c975237ec64 |
comparison
equal
deleted
inserted
replaced
251:75091bfc577b | 252:ddb1a0e94cf4 |
---|---|
12 # currently using libac3 for ac3 decoding | 12 # currently using libac3 for ac3 decoding |
13 ifeq ($(CONFIG_AC3),yes) | 13 ifeq ($(CONFIG_AC3),yes) |
14 OBJS+= ac3dec.o \ | 14 OBJS+= ac3dec.o \ |
15 libac3/bit_allocate.o libac3/bitstream.o libac3/downmix.o \ | 15 libac3/bit_allocate.o libac3/bitstream.o libac3/downmix.o \ |
16 libac3/imdct.o libac3/parse.o | 16 libac3/imdct.o libac3/parse.o |
17 endif | |
18 | |
19 ifeq ($(TARGET_GPROF),yes) | |
20 CFLAGS+=-p | |
21 LDFLAGS+=-p | |
17 endif | 22 endif |
18 | 23 |
19 # i386 mmx specific stuff | 24 # i386 mmx specific stuff |
20 ifeq ($(TARGET_MMX),yes) | 25 ifeq ($(TARGET_MMX),yes) |
21 OBJS += i386/fdct_mmx.o i386/cputest.o \ | 26 OBJS += i386/fdct_mmx.o i386/cputest.o \ |