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
68
class PLATFORM_EXPORT
FFTFrame
{
72
FFTFrame
(unsigned fftSize);
73
FFTFrame
(); // creates a blank/empty frame for later use with createInterpolatedFrame()
74
FFTFrame
(const
FFTFrame
& frame);
75
~
FFTFrame
();
81
void multiply(const
FFTFrame
& frame); // multiplies ourself with frame : effectively operator*=()
92
static PassOwnPtr<
FFTFrame
> createInterpolatedFrame(const
FFTFrame
& frame1, const
FFTFrame
& frame2, double x)
[
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/chromium/
FFTFrameOpenMAXDLAndroid.cpp
31
#include "platform/audio/
FFTFrame
.h"
46
FFTFrame
::
FFTFrame
(unsigned fftSize)
63
FFTFrame
::
FFTFrame
()
72
FFTFrame
::
FFTFrame
(const
FFTFrame
& frame)
90
void
FFTFrame
::initialize()
94
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"
47
FFTFrame
::
FFTFrame
(unsigned fftSize)
65
FFTFrame
::
FFTFrame
()
72
FFTFrame
::
FFTFrame
(const
FFTFrame
& frame)
90
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"
90
FFTFrame
::
FFTFrame
(unsigned fftSize)
107
FFTFrame
::
FFTFrame
()
116
FFTFrame
::
FFTFrame
(const
FFTFrame
& frame)
134
void
FFTFrame
::initialize(
[
all
...]
Completed in 675 milliseconds