HomeSort by relevance Sort by last modified time
    Searched refs:frameCount (Results 1 - 25 of 129) sorted by null

1 2 3 4 5 6

  /frameworks/base/media/libeffects/testlibs/
AudioBiquadFilter.h 27 // The filter works on fixed sized blocks of data (frameCount multi-channel
72 // Process a buffer of data. Always processes frameCount multi-channel
75 // in The input buffer. Should be of size frameCount * nChannels.
76 // out The output buffer. Should be of size frameCount * nChannels.
77 // frameCount Number of multi-channel samples to process.
79 int frameCount);
98 int frameCount);
154 bool updateCoefs(const audio_coef_t coefs[NUM_COEFS], int frameCount);
158 int frameCount);
161 int frameCount);
    [all...]
AudioBiquadFilter.cpp 68 int frameCount) {
69 (this->*mCurProcessFunc)(in, out, frameCount);
123 int frameCount) {
124 int64_t maxDelta = mMaxDelta * frameCount;
143 int frameCount) {
146 memcpy(out, in, frameCount * mNumChannels * sizeof(audio_sample_t));
152 int frameCount) {
153 size_t nFrames = frameCount;
186 int frameCount) {
187 if (updateCoefs(mTargetCoefs, frameCount)) {
    [all...]
AudioPeakingFilter.h 99 // frameCount * nChannels interlaced samples. Processing can be done
103 // frameCount Number of frames to produce.
105 int frameCount) { mBiquad.process(in, out, frameCount); }
AudioShelvingFilter.h 93 // frameCount * nChannels interlaced samples. Processing can be done
97 // frameCount Number of frames to produce.
99 int frameCount) { mBiquad.process(in, out, frameCount); }
  /external/webkit/Source/WebKit/mac/Misc/
WebKitStatistics.h 38 + (int)frameCount;
WebKitStatistics.m 46 + (int)frameCount
  /frameworks/base/graphics/java/android/graphics/
Interpolator.java 29 public Interpolator(int valueCount, int frameCount) {
31 mFrameCount = frameCount;
32 native_instance = nativeConstructor(valueCount, frameCount);
49 public void reset(int valueCount, int frameCount) {
51 mFrameCount = frameCount;
52 nativeReset(native_instance, valueCount, frameCount);
156 private static native int nativeConstructor(int valueCount, int frameCount);
158 private static native void nativeReset(int native_instance, int valueCount, int frameCount);
  /frameworks/base/services/audioflinger/
AudioResampler.cpp 131 mBuffer.frameCount = 0;
158 mBuffer.frameCount = 0;
199 while (mBuffer.frameCount == 0) {
200 mBuffer.frameCount = inFrameCount;
206 // LOGE("New buffer fetched: %d frames\n", mBuffer.frameCount);
207 if (mBuffer.frameCount > inputIndex) break;
209 inputIndex -= mBuffer.frameCount;
210 mX0L = mBuffer.i16[mBuffer.frameCount*2-2];
211 mX0R = mBuffer.i16[mBuffer.frameCount*2-1];
213 // mBuffer.frameCount == 0 now so we reload a new buffe
    [all...]
AudioBufferProvider.h 37 size_t frameCount;
AudioResamplerCubic.cpp 66 if (mBuffer.frameCount == 0) {
67 mBuffer.frameCount = inFrameCount;
71 // LOGW("New buffer: offset=%p, frames=%dn", mBuffer.raw, mBuffer.frameCount);
94 if (inputIndex == mBuffer.frameCount) {
97 mBuffer.frameCount = inFrameCount;
102 // LOGW("New buffer: offset=%p, frames=%d\n", mBuffer.raw, mBuffer.frameCount);
131 if (mBuffer.frameCount == 0) {
132 mBuffer.frameCount = inFrameCount;
136 // LOGW("New buffer: offset=%p, frames=%d\n", mBuffer.raw, mBuffer.frameCount);
159 if (inputIndex == mBuffer.frameCount) {
    [all...]
AudioMixer.cpp 47 AudioMixer::AudioMixer(size_t frameCount, uint32_t sampleRate)
52 mState.frameCount = frameCount;
253 int32_t volInc = d / int32_t(mState.frameCount);
273 int32_t volInc = d / int32_t(mState.frameCount);
424 state->outputTemp = new int32_t[MAX_NUM_CHANNELS * state->frameCount];
427 state->resampleTemp = new int32_t[MAX_NUM_CHANNELS * state->frameCount];
602 void AudioMixer::volumeRampStereo(track_t* t, int32_t* out, size_t frameCount, int32_t* temp, int32_t* aux)
611 // (vl + vlInc*frameCount)/65536.0f, frameCount);
    [all...]
  /external/skia/src/animator/
SkOperandInterpolator.h 28 SkOperandInterpolator(int elemCount, int frameCount, SkDisplayTypes type);
31 void reset(int elemCount, int frameCount, SkDisplayTypes type);
SkOperandIterpolator.cpp 26 SkOperandInterpolator::SkOperandInterpolator(int elemCount, int frameCount,
29 this->reset(elemCount, frameCount, type);
32 void SkOperandInterpolator::reset(int elemCount, int frameCount, SkDisplayTypes type)
36 INHERITED::reset(elemCount, frameCount);
38 fStorage = sk_malloc_throw((sizeof(SkOperand) * elemCount + sizeof(SkTimeCode)) * frameCount);
40 fValues = (SkOperand*) ((char*) fStorage + sizeof(SkTimeCode) * frameCount);
  /external/webkit/Source/WebCore/platform/graphics/
BitmapImage.cpp 121 size_t numFrames = frameCount();
221 size_t BitmapImage::frameCount()
225 m_frameCount = m_source.frameCount();
244 if (index >= frameCount())
255 if (index >= frameCount())
266 if (index >= frameCount())
277 if (index >= frameCount())
307 if (m_frameTimer || !shouldAnimate() || frameCount() <= 1)
316 size_t nextFrame = (m_currentFrame + 1) % frameCount();
324 if (!m_allDataReceived && repetitionCount(false) == cAnimationLoopOnce && m_currentFrame >= (frameCount() - 1)
    [all...]
  /external/skia/include/utils/
SkInterpolator.h 33 void reset(int elemCount, int frameCount);
97 SkInterpolator(int elemCount, int frameCount);
98 void reset(int elemCount, int frameCount);
  /external/webkit/Source/WebCore/inspector/
ScriptCallStack.cpp 68 size_t frameCount = o->m_frames.size();
69 if (frameCount != m_frames.size())
72 for (size_t i = 0; i < frameCount; ++i) {
  /external/webkit/Source/WebKit/chromium/src/
WebImageSkia.cpp 59 const size_t frameCount = source.frameCount();
62 for (size_t i = 0; i < frameCount; ++i) {
WebImageCG.cpp 60 const size_t frameCount = source.frameCount();
63 for (size_t i = 0; i < frameCount; ++i) {
  /frameworks/base/include/private/media/
AudioTrackShared.h 69 uint32_t frameCount;
94 uint32_t stepUser(uint32_t frameCount);
95 bool stepServer(uint32_t frameCount);
  /external/webkit/Source/WebCore/bindings/v8/
ScriptCallStackFactory.cpp 66 int frameCount = stackTrace->GetFrameCount();
67 if (frameCount > static_cast<int>(maxStackSize))
68 frameCount = maxStackSize;
69 for (int i = 0; i < frameCount; i++) {
73 if (!frameCount && !emptyStackIsAllowed) {
  /frameworks/base/media/libmedia/
AudioTrack.cpp 53 int* frameCount,
74 *frameCount = (sampleRate == 0) ? afFrameCount * minBufCount :
91 int frameCount,
100 frameCount, flags, cbf, user, notificationFrames,
146 int frameCount,
218 mFrameCount = frameCount;
228 frameCount,
296 uint32_t AudioTrack::frameCount() const
298 return mCblk->frameCount;
562 loopEnd - loopStart > cblk->frameCount ||
    [all...]
AudioRecord.cpp 51 int* frameCount,
76 *frameCount = size;
92 int frameCount,
101 frameCount, flags, cbf, user, notificationFrames, sessionId);
126 int frameCount,
135 LOGV("set(): sampleRate %d, channelMask %d, frameCount %d",sampleRate, channelMask, frameCount);
184 // validate framecount
192 if (frameCount == 0) {
193 frameCount = minFrameCount
    [all...]
  /frameworks/base/include/media/
AudioRecord.h 71 size_t frameCount;
112 static status_t getMinFrameCount(int* frameCount,
134 * frameCount: Total size of track PCM buffer in frames. This defines the
155 int frameCount = 0,
181 int frameCount = 0,
208 uint32_t frameCount() const;
299 /* obtains a buffer of "frameCount" frames. The buffer must be
353 int frameCount,
  /external/webkit/Source/WebKit/chromium/public/
WebImageDecoder.h 73 WEBKIT_API size_t frameCount() const;
  /external/webkit/Source/WebKit/win/
WebKitStatistics.h 51 virtual HRESULT STDMETHODCALLTYPE frameCount(

Completed in 558 milliseconds

1 2 3 4 5 6