/external/chromium_org/third_party/skia/src/animator/ |
SkOperandIterpolator.cpp | 18 SkOperandInterpolator::SkOperandInterpolator(int elemCount, int frameCount, 21 this->reset(elemCount, frameCount, type); 24 void SkOperandInterpolator::reset(int elemCount, int frameCount, SkDisplayTypes type) 28 INHERITED::reset(elemCount, frameCount); 30 fStorage = sk_malloc_throw((sizeof(SkOperand) * elemCount + sizeof(SkTimeCode)) * frameCount); 32 fValues = (SkOperand*) ((char*) fStorage + sizeof(SkTimeCode) * frameCount);
|
/external/mp4parser/isoparser/src/main/java/com/coremedia/iso/boxes/sampleentry/ |
VisualSampleEntry.java | 68 private int frameCount = 1; 95 return frameCount; 126 public void setFrameCount(int frameCount) { 127 this.frameCount = frameCount; 150 frameCount = IsoTypeReader.readUInt16(content);
|
/external/skia/src/animator/ |
SkOperandIterpolator.cpp | 18 SkOperandInterpolator::SkOperandInterpolator(int elemCount, int frameCount, 21 this->reset(elemCount, frameCount, type); 24 void SkOperandInterpolator::reset(int elemCount, int frameCount, SkDisplayTypes type) 28 INHERITED::reset(elemCount, frameCount); 30 fStorage = sk_malloc_throw((sizeof(SkOperand) * elemCount + sizeof(SkTimeCode)) * frameCount); 32 fValues = (SkOperand*) ((char*) fStorage + sizeof(SkTimeCode) * frameCount);
|
/external/chromium_org/third_party/WebKit/Source/platform/graphics/test/ |
MockImageDecoder.h | 38 virtual size_t frameCount() = 0; 82 virtual size_t frameCount() OVERRIDE 84 return m_client->frameCount();
|
/external/chromium_org/third_party/WebKit/Source/platform/mhtml/ |
MHTMLParser.h | 55 size_t frameCount() const;
|
/external/chromium_org/third_party/WebKit/public/web/ |
WebImageDecoder.h | 73 BLINK_EXPORT size_t frameCount() const;
|
/frameworks/base/core/jni/android/graphics/ |
Interpolator.cpp | 8 static SkInterpolator* Interpolator_constructor(JNIEnv* env, jobject clazz, int valueCount, int frameCount) 10 return new SkInterpolator(valueCount, frameCount); 18 static void Interpolator_reset(JNIEnv* env, jobject clazz, SkInterpolator* interp, int valueCount, int frameCount) 20 interp->reset(valueCount, frameCount);
|
/frameworks/av/services/audioflinger/ |
AudioMixer.cpp | 64 mDownmixConfig.inputCfg.buffer.frameCount = pBuffer->frameCount; 66 mDownmixConfig.outputCfg.buffer.frameCount = pBuffer->frameCount; 100 AudioMixer::AudioMixer(size_t frameCount, uint32_t sampleRate, uint32_t maxNumTracks) 122 mState.frameCount = frameCount; 200 // t->frameCount 210 // t->buffer.frameCount 509 int32_t volInc = d / int32_t(mState.frameCount); [all...] |
RecordTracks.h | 30 size_t frameCount,
|
AudioMixer.h | 40 AudioMixer(size_t frameCount, uint32_t sampleRate, 173 uint16_t frameCount; 220 size_t frameCount; 278 static void volumeRampStereo(track_t* t, int32_t* out, size_t frameCount, int32_t* temp, 280 static void volumeStereo(track_t* t, int32_t* out, size_t frameCount, int32_t* temp,
|
/external/chromium_org/third_party/WebKit/Source/web/ |
WebImageDecoder.cpp | 92 size_t WebImageDecoder::frameCount() const 95 return m_private->frameCount();
|
/external/chromium_org/third_party/WebKit/Source/bindings/v8/ |
ScriptCallStackFactory.cpp | 74 int frameCount = stackTrace->GetFrameCount(); 75 if (frameCount > static_cast<int>(maxStackSize)) 76 frameCount = maxStackSize; 77 for (int i = 0; i < frameCount; i++) { 81 if (!frameCount && !emptyStackIsAllowed) {
|
/frameworks/av/include/media/ |
AudioRecord.h | 60 size_t frameCount; // number of sample frames corresponding to size; 65 size_t size; // input/output in bytes == frameCount * frameSize 66 // FIXME this is redundant with respect to frameCount, 104 static status_t getMinFrameCount(size_t* frameCount, 134 * frameCount: Minimum size of track PCM buffer in frames. This defines the 154 int frameCount = 0, 186 int frameCount = 0, 212 size_t frameCount() const { return mFrameCount; } 310 /* Obtains a buffer of up to "audioBuffer->frameCount" full frames. 333 * frameCount number of frames requeste [all...] |
/external/chromium_org/third_party/WebKit/Source/platform/graphics/ |
BitmapImage.cpp | 140 size_t numFrames = frameCount(); 300 size_t BitmapImage::frameCount() 303 m_frameCount = m_source.frameCount(); 304 // If decoder is not initialized yet, m_source.frameCount() returns 0. 324 if (index >= frameCount()) 393 return size().width() != 1 || size().height() != 1 || frameCount() > 1; 419 if (m_frameTimer || !shouldAnimate() || frameCount() <= 1) 428 size_t nextFrame = (m_currentFrame + 1) % frameCount(); 436 if (!m_allDataReceived && repetitionCount(false) == cAnimationLoopOnce && m_currentFrame >= (frameCount() - 1)) 474 for (size_t frameAfterNext = (nextFrame + 1) % frameCount(); frameIsCompleteAtIndex(frameAfterNext); frameAfterNext = (nextFrame + 1) % frameCount()) [all...] |
ImageSource.h | 112 size_t frameCount() const;
|
/frameworks/native/opengl/tests/angeles/ |
app-linux.cpp | 205 int frameCount = 0; 219 frameCount++; 228 printf("totalTime=%f s, frameCount=%d, %.2f fps\n", 229 totalTime, frameCount, frameCount/totalTime);
|
/cts/tests/tests/media/src/android/media/cts/ |
IvfWriter.java | 59 mOutputFile.seek(HEADER_END); // Skip the header for now, as framecount is unknown 103 * @param frameCount total number of frames file contains 109 private static byte[] makeIvfHeader(int frameCount, int width, int height, int scale, int rate){ 125 lay32Bits(ivfHeader, 24, frameCount);
|
/external/chromium_org/third_party/skia/src/utils/ |
SkInterpolator.cpp | 26 void SkInterpolatorBase::reset(int elemCount, int frameCount) { 29 fFrameCount = SkToS16(frameCount); 137 SkInterpolator::SkInterpolator(int elemCount, int frameCount) { 139 this->reset(elemCount, frameCount); 142 void SkInterpolator::reset(int elemCount, int frameCount) { 143 INHERITED::reset(elemCount, frameCount); 145 sizeof(SkTimeCode)) * frameCount); 147 fValues = (SkScalar*) ((char*) fStorage + sizeof(SkTimeCode) * frameCount);
|
/external/skia/src/utils/ |
SkInterpolator.cpp | 26 void SkInterpolatorBase::reset(int elemCount, int frameCount) { 29 fFrameCount = SkToS16(frameCount); 137 SkInterpolator::SkInterpolator(int elemCount, int frameCount) { 139 this->reset(elemCount, frameCount); 142 void SkInterpolator::reset(int elemCount, int frameCount) { 143 INHERITED::reset(elemCount, frameCount); 145 sizeof(SkTimeCode)) * frameCount); 147 fValues = (SkScalar*) ((char*) fStorage + sizeof(SkTimeCode) * frameCount);
|
/hardware/libhardware/tests/camera2/ |
CameraFrameTests.cpp | 98 int frameCount = 0; 100 &frameCount, 1));
|
/frameworks/av/libvideoeditor/lvpp/ |
VideoEditorSRC.cpp | 202 ALOGV("getNextBuffer %d, chan = %d", pBuffer->frameCount, mChannelCnt); 204 uint32_t want = pBuffer->frameCount * mChannelCnt * 2; 226 pBuffer->frameCount = 0; 280 pBuffer->frameCount = done / (mChannelCnt * 2); 281 ALOGV("getNextBuffer done %d", pBuffer->frameCount); 290 pBuffer->frameCount = 0;
|
/frameworks/av/media/libmedia/ |
AudioRecord.cpp | 35 size_t* frameCount, 40 if (frameCount == NULL) { 45 *frameCount = 0; 67 *frameCount = size; 84 int frameCount, 96 mStatus = set(inputSource, sampleRate, format, channelMask, frameCount, cbf, user, 164 size_t frameCount = frameCountInt; 166 ALOGV("set(): sampleRate %u, channelMask %#x, frameCount %u", sampleRate, channelMask, 167 frameCount); 215 // validate framecount [all...] |
/external/qemu/audio/ |
coreaudio.c | 501 UInt32 frame, frameCount; 520 frameCount = core->bufferFrameSize; 524 if (live < frameCount) { 534 for (frame = 0; frame < frameCount; frame++) { 549 rpos = (rpos + frameCount) % hw->samples; 550 core->decr += frameCount; 639 UInt32 frame, frameCount; 658 frameCount = core->bufferFrameSize; 661 D("%s: enter avail=%d core.decr=%d core.pos=%d hw.samples=%d hw.total_samples_captured=%d frameCount=%d\n", 662 __FUNCTION__, avail, core->decr, core->pos, hw->samples, hw->total_samples_captured, (int)frameCount); [all...] |
/external/chromium_org/third_party/WebKit/Source/devtools/front_end/ |
TimelineFrameController.js | 156 this.frameCount = frames.length; 161 var lastFrame = frames[this.frameCount - 1]; 166 for (var i = 0; i < this.frameCount; ++i) { 174 this.average = totalDuration / this.frameCount; 175 var variance = sumOfSquares / this.frameCount - this.average * this.average;
|
/external/okhttp/src/test/java/com/squareup/okhttp/internal/spdy/ |
MockSpdyPeer.java | 39 private int frameCount = 0; 50 frameCount++; 54 outFrames.add(new OutFrame(frameCount++, bytesOut.size(), Integer.MAX_VALUE)); 64 outFrames.add(new OutFrame(frameCount++, bytesOut.size(), truncateToLength)); 103 for (int i = 0; i < frameCount; i++) {
|