OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
defs:FFTFrame
(Results
1 - 6
of
6
) sorted by null
/external/chromium_org/third_party/WebKit/Source/platform/audio/
FFTFrameStub.cpp
26
//
FFTFrame
stub implementation to avoid link errors during bringup
34
#include "platform/audio/
FFTFrame
.h"
39
FFTFrame
::
FFTFrame
(unsigned /*fftSize*/)
47
FFTFrame
::
FFTFrame
()
55
FFTFrame
::
FFTFrame
(const
FFTFrame
& frame)
62
FFTFrame
::~FFTFrame(
[
all
...]
FFTFrame.h
53
class PLATFORM_EXPORT
FFTFrame
{
57
FFTFrame
(unsigned fftSize);
58
FFTFrame
(); // creates a blank/empty frame for later use with createInterpolatedFrame()
59
FFTFrame
(const
FFTFrame
& frame);
60
~
FFTFrame
();
77
static PassOwnPtr<
FFTFrame
> createInterpolatedFrame(const
FFTFrame
& frame1, const
FFTFrame
& frame2, double x);
81
void multiply(const
FFTFrame
&); // multiplies ourself with frame : effectively operator*=(
[
all
...]
/external/chromium_org/third_party/WebKit/Source/platform/audio/mac/
FFTFrameMac.cpp
29
// Mac OS X - specific
FFTFrame
implementation
37
#include "platform/audio/
FFTFrame
.h"
45
FFTSetup*
FFTFrame
::fftSetups = 0;
48
FFTFrame
::
FFTFrame
(unsigned fftSize)
67
FFTFrame
::
FFTFrame
()
80
FFTFrame
::
FFTFrame
(const
FFTFrame
& frame
[
all
...]
/external/chromium_org/third_party/WebKit/Source/platform/audio/android/
FFTFrameOpenMAXDLAndroid.cpp
31
#include "platform/audio/
FFTFrame
.h"
45
FFTFrame
::
FFTFrame
(unsigned fftSize)
62
FFTFrame
::
FFTFrame
()
71
FFTFrame
::
FFTFrame
(const
FFTFrame
& frame)
89
void
FFTFrame
::initialize()
93
void
FFTFrame
::cleanup(
[
all
...]
/external/chromium_org/third_party/WebKit/Source/platform/audio/ipp/
FFTFrameIPP.cpp
27
//
FFTFrame
implementation using Intel IPP's DFT algorithm,
36
#include "platform/audio/
FFTFrame
.h"
45
FFTFrame
::
FFTFrame
(unsigned fftSize)
63
FFTFrame
::
FFTFrame
()
70
FFTFrame
::
FFTFrame
(const
FFTFrame
& frame)
88
void
FFTFrame
::initialize(
[
all
...]
/external/chromium_org/third_party/WebKit/Source/platform/audio/ffmpeg/
FFTFrameFFMPEG.cpp
26
//
FFTFrame
implementation using FFmpeg's RDFT algorithm,
35
#include "platform/audio/
FFTFrame
.h"
52
FFTFrame
::
FFTFrame
(unsigned fftSize)
69
FFTFrame
::
FFTFrame
()
78
FFTFrame
::
FFTFrame
(const
FFTFrame
& frame)
96
void
FFTFrame
::initialize(
[
all
...]
Completed in 584 milliseconds