| OLD | NEW |
| 1 /* | 1 /* |
| 2 * Copyright (C) 2012 Intel Inc. All rights reserved. | 2 * Copyright (C) 2012 Intel 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 // Only support kernelSize <= m_inputBlockSize | 57 // Only support kernelSize <= m_inputBlockSize |
| 58 size_t kernelSize = convolutionKernel->size(); | 58 size_t kernelSize = convolutionKernel->size(); |
| 59 ASSERT(kernelSize <= m_inputBlockSize); | 59 ASSERT(kernelSize <= m_inputBlockSize); |
| 60 if (kernelSize > m_inputBlockSize) | 60 if (kernelSize > m_inputBlockSize) |
| 61 return; | 61 return; |
| 62 | 62 |
| 63 float* kernelP = convolutionKernel->data(); | 63 float* kernelP = convolutionKernel->data(); |
| 64 | 64 |
| 65 // Sanity check | 65 // Sanity check |
| 66 bool isCopyGood = kernelP && sourceP && destP && m_buffer.data(); | 66 bool isCopyGood = kernelP && sourceP && destP && m_buffer.data(); |
| 67 ASSERT(isCopyGood); | 67 DCHECK(isCopyGood); |
| 68 if (!isCopyGood) | 68 if (!isCopyGood) |
| 69 return; | 69 return; |
| 70 | 70 |
| 71 float* inputP = m_buffer.data() + m_inputBlockSize; | 71 float* inputP = m_buffer.data() + m_inputBlockSize; |
| 72 | 72 |
| 73 // Copy samples to 2nd half of input buffer. | 73 // Copy samples to 2nd half of input buffer. |
| 74 memcpy(inputP, sourceP, sizeof(float) * framesToProcess); | 74 memcpy(inputP, sourceP, sizeof(float) * framesToProcess); |
| 75 | 75 |
| 76 #if OS(MACOSX) | 76 #if OS(MACOSX) |
| 77 #if CPU(X86) | 77 #if CPU(X86) |
| (...skipping 326 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 404 | 404 |
| 405 // Copy 2nd half of input buffer to 1st half. | 405 // Copy 2nd half of input buffer to 1st half. |
| 406 memcpy(m_buffer.data(), inputP, sizeof(float) * framesToProcess); | 406 memcpy(m_buffer.data(), inputP, sizeof(float) * framesToProcess); |
| 407 } | 407 } |
| 408 | 408 |
| 409 void DirectConvolver::reset() { | 409 void DirectConvolver::reset() { |
| 410 m_buffer.zero(); | 410 m_buffer.zero(); |
| 411 } | 411 } |
| 412 | 412 |
| 413 } // namespace blink | 413 } // namespace blink |
| OLD | NEW |