1234567891011121314151617181920 |
- $OpenBSD: patch-libavcodec_aactab_c,v 1.1 2015/12/06 08:51:46 ajacoutot Exp $
- avcodec/aac_tablegen: get rid of hardcoded tables entirely
- --- libavcodec/aactab.c.orig Sun Nov 29 18:48:17 2015
- +++ libavcodec/aactab.c Sun Nov 29 18:48:44 2015
- @@ -29,9 +29,11 @@
-
- #include "libavutil/mem.h"
- #include "aac.h"
- -#include "aac_tablegen.h"
-
- #include <stdint.h>
- +
- +float ff_aac_pow2sf_tab[428];
- +float ff_aac_pow34sf_tab[428];
-
- DECLARE_ALIGNED(32, float, ff_aac_kbd_long_1024)[1024];
- DECLARE_ALIGNED(32, float, ff_aac_kbd_short_128)[128];
|