You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

80 lines
2.4KB

  1. /*
  2. * Header file for hardcoded sine windows
  3. *
  4. * Copyright (c) 2009 Reimar Döffinger <Reimar.Doeffinger@gmx.de>
  5. *
  6. * This file is part of FFmpeg.
  7. *
  8. * FFmpeg is free software; you can redistribute it and/or
  9. * modify it under the terms of the GNU Lesser General Public
  10. * License as published by the Free Software Foundation; either
  11. * version 2.1 of the License, or (at your option) any later version.
  12. *
  13. * FFmpeg is distributed in the hope that it will be useful,
  14. * but WITHOUT ANY WARRANTY; without even the implied warranty of
  15. * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
  16. * Lesser General Public License for more details.
  17. *
  18. * You should have received a copy of the GNU Lesser General Public
  19. * License along with FFmpeg; if not, write to the Free Software
  20. * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
  21. */
  22. #ifndef AVCODEC_SINEWIN_TABLEGEN_H
  23. #define AVCODEC_SINEWIN_TABLEGEN_H
  24. #include <assert.h>
  25. // do not use libavutil/libm.h since this is compiled both
  26. // for the host and the target and config.h is only valid for the target
  27. #include <math.h>
  28. #include "libavcodec/aac_defines.h"
  29. #include "libavutil/attributes.h"
  30. #include "libavutil/common.h"
  31. #if !CONFIG_HARDCODED_TABLES
  32. SINETABLE( 32);
  33. SINETABLE( 64);
  34. SINETABLE( 128);
  35. SINETABLE( 256);
  36. SINETABLE( 512);
  37. SINETABLE(1024);
  38. SINETABLE(2048);
  39. SINETABLE(4096);
  40. SINETABLE(8192);
  41. #else
  42. #if USE_FIXED
  43. #include "libavcodec/sinewin_fixed_tables.h"
  44. #else
  45. #include "libavcodec/sinewin_tables.h"
  46. #endif
  47. #endif
  48. #if USE_FIXED
  49. #define SIN_FIX(a) (int)floor((a) * 0x80000000 + 0.5)
  50. #else
  51. #define SIN_FIX(a) a
  52. #endif
  53. SINETABLE_CONST INTFLOAT * const AAC_RENAME(ff_sine_windows)[] = {
  54. NULL, NULL, NULL, NULL, NULL, // unused
  55. AAC_RENAME(ff_sine_32) , AAC_RENAME(ff_sine_64), AAC_RENAME(ff_sine_128),
  56. AAC_RENAME(ff_sine_256), AAC_RENAME(ff_sine_512), AAC_RENAME(ff_sine_1024),
  57. AAC_RENAME(ff_sine_2048), AAC_RENAME(ff_sine_4096), AAC_RENAME(ff_sine_8192)
  58. };
  59. // Generate a sine window.
  60. av_cold void AAC_RENAME(ff_sine_window_init)(INTFLOAT *window, int n) {
  61. int i;
  62. for(i = 0; i < n; i++)
  63. window[i] = SIN_FIX(sinf((i + 0.5) * (M_PI / (2.0 * n))));
  64. }
  65. av_cold void AAC_RENAME(ff_init_ff_sine_windows)(int index) {
  66. assert(index >= 0 && index < FF_ARRAY_ELEMS(AAC_RENAME(ff_sine_windows)));
  67. #if !CONFIG_HARDCODED_TABLES
  68. AAC_RENAME(ff_sine_window_init)(AAC_RENAME(ff_sine_windows)[index], 1 << index);
  69. #endif
  70. }
  71. #endif /* AVCODEC_SINEWIN_TABLEGEN_H */