patch-libavcodec_aactab_c 541 B

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