| OLD | NEW |
| 1 /* | 1 /* |
| 2 * Copyright (C) 2011 Google Inc. All rights reserved. | 2 * Copyright (C) 2011 Google Inc. All rights reserved. |
| 3 * | 3 * |
| 4 * Redistribution and use in source and binary forms, with or without | 4 * Redistribution and use in source and binary forms, with or without |
| 5 * modification, are permitted provided that the following conditions | 5 * modification, are permitted provided that the following conditions |
| 6 * are met: | 6 * are met: |
| 7 * | 7 * |
| 8 * 1. Redistributions of source code must retain the above copyright | 8 * 1. Redistributions of source code must retain the above copyright |
| 9 * notice, this list of conditions and the following disclaimer. | 9 * notice, this list of conditions and the following disclaimer. |
| 10 * 2. Redistributions in binary form must reproduce the above copyright | 10 * 2. Redistributions in binary form must reproduce the above copyright |
| (...skipping 46 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 57 , m_log2FFTSize(frame.m_log2FFTSize) | 57 , m_log2FFTSize(frame.m_log2FFTSize) |
| 58 { | 58 { |
| 59 ASSERT_NOT_REACHED(); | 59 ASSERT_NOT_REACHED(); |
| 60 } | 60 } |
| 61 | 61 |
| 62 FFTFrame::~FFTFrame() | 62 FFTFrame::~FFTFrame() |
| 63 { | 63 { |
| 64 ASSERT_NOT_REACHED(); | 64 ASSERT_NOT_REACHED(); |
| 65 } | 65 } |
| 66 | 66 |
| 67 void FFTFrame::multiply(const FFTFrame& frame) | |
| 68 { | |
| 69 ASSERT_NOT_REACHED(); | |
| 70 } | |
| 71 | |
| 72 void FFTFrame::doFFT(const float* data) | 67 void FFTFrame::doFFT(const float* data) |
| 73 { | 68 { |
| 74 ASSERT_NOT_REACHED(); | 69 ASSERT_NOT_REACHED(); |
| 75 } | 70 } |
| 76 | 71 |
| 77 void FFTFrame::doInverseFFT(float* data) | 72 void FFTFrame::doInverseFFT(float* data) |
| 78 { | 73 { |
| 79 ASSERT_NOT_REACHED(); | 74 ASSERT_NOT_REACHED(); |
| 80 } | 75 } |
| 81 | 76 |
| (...skipping 16 matching lines...) Expand all Loading... |
| 98 { | 93 { |
| 99 ASSERT_NOT_REACHED(); | 94 ASSERT_NOT_REACHED(); |
| 100 return 0; | 95 return 0; |
| 101 } | 96 } |
| 102 | 97 |
| 103 } // namespace WebCore | 98 } // namespace WebCore |
| 104 | 99 |
| 105 #endif // !OS(MACOSX) && !USE(WEBAUDIO_FFMPEG) && !USE(WEBAUDIO_IPP) && !USE(WEB
AUDIO_OPENMAX_DL_FFT) | 100 #endif // !OS(MACOSX) && !USE(WEBAUDIO_FFMPEG) && !USE(WEBAUDIO_IPP) && !USE(WEB
AUDIO_OPENMAX_DL_FFT) |
| 106 | 101 |
| 107 #endif // ENABLE(WEB_AUDIO) | 102 #endif // ENABLE(WEB_AUDIO) |
| OLD | NEW |