Browse Source

Add missing dependencies for the AAC-HE backport for hardcoded tables

Unbreaks compilation with --enable-hardcoded-tables
tags/ffmpeg-0.6.3
Reinhard Tartler 15 years ago
parent
commit
2b2856bac2
2 changed files with 8 additions and 1 deletions
  1. +5
    -0
      Changelog
  2. +3
    -1
      libavcodec/Makefile

+ 5
- 0
Changelog View File

@@ -1,6 +1,11 @@
Entries are sorted chronologically from oldest to youngest within each release, Entries are sorted chronologically from oldest to youngest within each release,
releases are sorted from youngest to oldest. releases are sorted from youngest to oldest.


version 0.6.3:

- fix compilation with --enable-hardcoded-tables


version 0.6.2: version 0.6.2:


- Fix invalid reads in VC-1 decoding (related to CVE-2011-0723) - Fix invalid reads in VC-1 decoding (related to CVE-2011-0723)


+ 3
- 1
libavcodec/Makefile View File

@@ -645,7 +645,9 @@ $(SUBDIR)%_tables.h: $(SUBDIR)%_tablegen$(HOSTEXESUF)
$(M)./$< > $@ $(M)./$< > $@


ifdef CONFIG_HARDCODED_TABLES ifdef CONFIG_HARDCODED_TABLES
$(SUBDIR)aac.o: $(SUBDIR)cbrt_tables.h
$(SUBDIR)aacdec.o: $(SUBDIR)cbrt_tables.h
$(SUBDIR)aacps.o: $(SUBDIR)aacps_tables.h
$(SUBDIR)aactab.o: $(SUBDIR)aac_tables.h
$(SUBDIR)dv.o: $(SUBDIR)dv_tables.h $(SUBDIR)dv.o: $(SUBDIR)dv_tables.h
$(SUBDIR)mdct.o: $(SUBDIR)mdct_tables.h $(SUBDIR)mdct.o: $(SUBDIR)mdct_tables.h
$(SUBDIR)mpegaudiodec.o: $(SUBDIR)mpegaudio_tables.h $(SUBDIR)mpegaudiodec.o: $(SUBDIR)mpegaudio_tables.h


Loading…
Cancel
Save