comparison Makefile @ 11523:3367dd5913a0 libavcodec

Add support for hard-coding the 256kB large dv_vlc_map table.
author reimar
date Sun, 21 Mar 2010 16:03:45 +0000
parents 8ae93fdefcd7
children d35c3095f96b
comparison
equal deleted inserted replaced
11522:db3588eb254a 11523:3367dd5913a0
624 else 624 else
625 $(SUBDIR)mpegaudio_tablegen$(HOSTEXESUF): HOSTCFLAGS += -DFRAC_BITS=15 625 $(SUBDIR)mpegaudio_tablegen$(HOSTEXESUF): HOSTCFLAGS += -DFRAC_BITS=15
626 $(SUBDIR)mpegaudio_tablegen.ho: CPPFLAGS += -DFRAC_BITS=15 626 $(SUBDIR)mpegaudio_tablegen.ho: CPPFLAGS += -DFRAC_BITS=15
627 endif 627 endif
628 628
629 ifdef CONFIG_SMALL
630 $(SUBDIR)%_tablegen$(HOSTEXESUF): HOSTCFLAGS += -DCONFIG_SMALL=1
631 else
632 $(SUBDIR)%_tablegen$(HOSTEXESUF): HOSTCFLAGS += -DCONFIG_SMALL=0
633 endif
634
629 $(SUBDIR)%_tablegen$(HOSTEXESUF): $(SUBDIR)%_tablegen.c $(SUBDIR)tableprint.c 635 $(SUBDIR)%_tablegen$(HOSTEXESUF): $(SUBDIR)%_tablegen.c $(SUBDIR)tableprint.c
630 $(HOSTCC) $(HOSTCFLAGS) $(HOSTLDFLAGS) -o $@ $^ $(HOSTLIBS) 636 $(HOSTCC) $(HOSTCFLAGS) $(HOSTLDFLAGS) -o $@ $^ $(HOSTLIBS)
631 637
632 $(SUBDIR)%_tables.h: $(SUBDIR)%_tablegen$(HOSTEXESUF) 638 $(SUBDIR)%_tables.h: $(SUBDIR)%_tablegen$(HOSTEXESUF)
633 $(M)./$< > $@ 639 $(M)./$< > $@
634 640
635 ifdef CONFIG_HARDCODED_TABLES 641 ifdef CONFIG_HARDCODED_TABLES
636 $(SUBDIR)aac.o: $(SUBDIR)cbrt_tables.h 642 $(SUBDIR)aac.o: $(SUBDIR)cbrt_tables.h
643 $(SUBDIR)dv.o: $(SUBDIR)dv_tables.h
637 $(SUBDIR)mdct.o: $(SUBDIR)mdct_tables.h 644 $(SUBDIR)mdct.o: $(SUBDIR)mdct_tables.h
638 $(SUBDIR)mpegaudiodec.o: $(SUBDIR)mpegaudio_tables.h 645 $(SUBDIR)mpegaudiodec.o: $(SUBDIR)mpegaudio_tables.h
639 $(SUBDIR)motionpixels.o: $(SUBDIR)motionpixels_tables.h 646 $(SUBDIR)motionpixels.o: $(SUBDIR)motionpixels_tables.h
640 $(SUBDIR)qdm2.o: $(SUBDIR)qdm2_tables.h 647 $(SUBDIR)qdm2.o: $(SUBDIR)qdm2_tables.h
641 endif 648 endif