diff options
author | Michael Niedermayer <michaelni@gmx.at> | 2011-03-24 02:21:37 +0100 |
---|---|---|
committer | Michael Niedermayer <michaelni@gmx.at> | 2011-03-24 02:22:00 +0100 |
commit | 15cfc6c97d403d06cf6ea0bc6ba5eb8e493857c2 (patch) | |
tree | f3d57dc90278d091cce239696f810123c155a3eb | |
parent | 4940d1c0aec9223d92aeead551492c81c18d8c60 (diff) | |
parent | b4eafa8b04802f45a710e712f2ec2676e0a77024 (diff) | |
download | ffmpeg-15cfc6c97d403d06cf6ea0bc6ba5eb8e493857c2.tar.gz |
Merge remote-tracking branch 'newdev/release/0.6' into release/0.6
* newdev/release/0.6:
Support writing 2d float arrays.
Add missing dependencies for the AAC-HE backport for hardcoded tables
configure: Add the -D parameter to the dlltool command
Set the correct target for mingw64 dlltool
configure: use dlltools instead of lib.exe
release notes and changelog for 0.6.2
Conflicts:
Changelog
Merged-by: Michael Niedermayer <michaelni@gmx.at>
-rw-r--r-- | Changelog | 5 | ||||
-rwxr-xr-x | configure | 6 | ||||
-rw-r--r-- | libavcodec/Makefile | 4 | ||||
-rw-r--r-- | libavcodec/tableprint.c | 1 | ||||
-rw-r--r-- | libavcodec/tableprint.h | 1 |
5 files changed, 14 insertions, 3 deletions
@@ -1,6 +1,11 @@ Entries are sorted chronologically from oldest to youngest within each release, releases are sorted from youngest to oldest. +version 0.6.3: + +- fix compilation with --enable-hardcoded-tables + + version 0.6.2: - Fix invalid reads in VC-1 decoding (related to CVE-2011-0723) @@ -2206,7 +2206,7 @@ case $target_os in LIBTARGET=i386 if enabled x86_64; then enable malloc_aligned - LIBTARGET=x64 + LIBTARGET="i386:x86-64" elif enabled arm; then LIBTARGET=arm fi @@ -2216,7 +2216,7 @@ case $target_os in SLIBSUF=".dll" SLIBNAME_WITH_VERSION='$(SLIBPREF)$(FULLNAME)-$(LIBVERSION)$(SLIBSUF)' SLIBNAME_WITH_MAJOR='$(SLIBPREF)$(FULLNAME)-$(LIBMAJOR)$(SLIBSUF)' - SLIB_EXTRA_CMD='-lib.exe /machine:$(LIBTARGET) /def:$$(@:$(SLIBSUF)=.def) /out:$(SUBDIR)$(SLIBNAME_WITH_MAJOR:$(SLIBSUF)=.lib)' + SLIB_EXTRA_CMD=-'$(DLLTOOL) -m $(LIBTARGET) -d $$(@:$(SLIBSUF)=.def) -l $(SUBDIR)$(SLIBNAME_WITH_MAJOR:$(SLIBSUF)=.lib) -D $(SLIBNAME_WITH_MAJOR)' SLIB_INSTALL_EXTRA_CMD='-install -m 644 $(SUBDIR)$(SLIBNAME_WITH_MAJOR:$(SLIBSUF)=.lib) "$(SHLIBDIR)/$(SLIBNAME:$(SLIBSUF)=.lib)"; \ install -m 644 $(SUBDIR)$(SLIBNAME_WITH_MAJOR:$(SLIBSUF)=.lib) "$(SHLIBDIR)/$(SLIBNAME_WITH_MAJOR:$(SLIBSUF)=.lib)"; \ install -d "$(LIBDIR)"; \ @@ -2224,6 +2224,7 @@ case $target_os in SLIB_UNINSTALL_EXTRA_CMD='rm -f "$(SHLIBDIR)/$(SLIBNAME:$(SLIBSUF)=.lib)"' SHFLAGS='-shared -Wl,--output-def,$$(@:$(SLIBSUF)=.def) -Wl,--out-implib,$(SUBDIR)lib$(SLIBNAME:$(SLIBSUF)=.dll.a) -Wl,--enable-runtime-pseudo-reloc -Wl,--enable-auto-image-base' objformat="win32" + dlltool="${cross_prefix}dlltool" enable dos_paths check_cflags -fno-common if ! enabled x86_64; then @@ -3002,6 +3003,7 @@ CPPFLAGS=$CPPFLAGS CFLAGS=$CFLAGS ASFLAGS=$ASFLAGS CC_O=$CC_O +DLLTOOL=$dlltool LDFLAGS=$LDFLAGS FFSERVERLDFLAGS=$FFSERVERLDFLAGS SHFLAGS=$SHFLAGS diff --git a/libavcodec/Makefile b/libavcodec/Makefile index 4547ef60ca..3dd24e7e12 100644 --- a/libavcodec/Makefile +++ b/libavcodec/Makefile @@ -645,7 +645,9 @@ $(SUBDIR)%_tables.h: $(SUBDIR)%_tablegen$(HOSTEXESUF) $(M)./$< > $@ 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)mdct.o: $(SUBDIR)mdct_tables.h $(SUBDIR)mpegaudiodec.o: $(SUBDIR)mpegaudio_tables.h diff --git a/libavcodec/tableprint.c b/libavcodec/tableprint.c index e39606bb15..0f422eb888 100644 --- a/libavcodec/tableprint.c +++ b/libavcodec/tableprint.c @@ -33,6 +33,7 @@ WRITE_1D_FUNC(float, float, "%.18e", 3) WRITE_2D_FUNC(int8, int8_t) WRITE_2D_FUNC(uint8, uint8_t) WRITE_2D_FUNC(uint32, uint32_t) +WRITE_2D_FUNC(float, float) void write_fileheader(void) { printf("/* This file was generated by libavcodec/tableprint */\n"); diff --git a/libavcodec/tableprint.h b/libavcodec/tableprint.h index d81af97e95..76ab8028b5 100644 --- a/libavcodec/tableprint.h +++ b/libavcodec/tableprint.h @@ -66,6 +66,7 @@ void write_float_array (const float *, int); void write_int8_2d_array (const void *, int, int); void write_uint8_2d_array (const void *, int, int); void write_uint32_2d_array(const void *, int, int); +void write_float_2d_array (const void *, int, int); /** \} */ // end of printfuncs group /** Write a standard file header */ |