sinewin_tablegen.h 2.5 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283
  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 !USE_FIXED
  32. SINETABLE120960(120);
  33. SINETABLE120960(960);
  34. #endif
  35. #if !CONFIG_HARDCODED_TABLES
  36. SINETABLE( 32);
  37. SINETABLE( 64);
  38. SINETABLE( 128);
  39. SINETABLE( 256);
  40. SINETABLE( 512);
  41. SINETABLE(1024);
  42. SINETABLE(2048);
  43. SINETABLE(4096);
  44. SINETABLE(8192);
  45. #else
  46. #if USE_FIXED
  47. #include "libavcodec/sinewin_fixed_tables.h"
  48. #else
  49. #include "libavcodec/sinewin_tables.h"
  50. #endif
  51. #endif
  52. #if USE_FIXED
  53. #define SIN_FIX(a) (int)floor((a) * 0x80000000 + 0.5)
  54. #else
  55. #define SIN_FIX(a) a
  56. #endif
  57. SINETABLE_CONST INTFLOAT * const AAC_RENAME(ff_sine_windows)[] = {
  58. NULL, NULL, NULL, NULL, NULL, // unused
  59. AAC_RENAME(ff_sine_32) , AAC_RENAME(ff_sine_64), AAC_RENAME(ff_sine_128),
  60. AAC_RENAME(ff_sine_256), AAC_RENAME(ff_sine_512), AAC_RENAME(ff_sine_1024),
  61. AAC_RENAME(ff_sine_2048), AAC_RENAME(ff_sine_4096), AAC_RENAME(ff_sine_8192),
  62. };
  63. // Generate a sine window.
  64. av_cold void AAC_RENAME(ff_sine_window_init)(INTFLOAT *window, int n) {
  65. int i;
  66. for(i = 0; i < n; i++)
  67. window[i] = SIN_FIX(sinf((i + 0.5) * (M_PI / (2.0 * n))));
  68. }
  69. av_cold void AAC_RENAME(ff_init_ff_sine_windows)(int index) {
  70. assert(index >= 0 && index < FF_ARRAY_ELEMS(AAC_RENAME(ff_sine_windows)));
  71. #if !CONFIG_HARDCODED_TABLES
  72. AAC_RENAME(ff_sine_window_init)(AAC_RENAME(ff_sine_windows)[index], 1 << index);
  73. #endif
  74. }
  75. #endif /* AVCODEC_SINEWIN_TABLEGEN_H */