HomeSort by relevance Sort by last modified time
    Searched refs:frameCount (Results 26 - 50 of 186) sorted by null

12 3 4 5 6 7 8

  /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/core/loader/archive/
MHTMLParser.h 52 size_t frameCount() const;
  /external/chromium_org/third_party/WebKit/public/web/
WebImageDecoder.h 73 WEBKIT_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 90 size_t WebImageDecoder::frameCount() const
93 return m_private->frameCount();
  /external/chromium_org/third_party/WebKit/Source/bindings/v8/
ScriptCallStackFactory.cpp 70 int frameCount = stackTrace->GetFrameCount();
71 if (frameCount > static_cast<int>(maxStackSize))
72 frameCount = maxStackSize;
73 for (int i = 0; i < frameCount; i++) {
77 if (!frameCount && !emptyStackIsAllowed) {
  /external/chromium_org/third_party/WebKit/Source/devtools/front_end/
TimelineFrameController.js 142 this.frameCount = frames.length;
147 var lastFrame = frames[this.frameCount - 1];
152 for (var i = 0; i < this.frameCount; ++i) {
160 this.average = totalDuration / this.frameCount;
161 var variance = sumOfSquares / this.frameCount - this.average * this.average;
  /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/core/platform/graphics/
BitmapImage.cpp 156 size_t numFrames = frameCount();
338 size_t BitmapImage::frameCount()
341 m_frameCount = m_source.frameCount();
342 // If decoder is not initialized yet, m_source.frameCount() returns 0.
364 if (index >= frameCount())
433 return size().width() != 1 || size().height() != 1 || frameCount() > 1;
460 if (m_frameTimer || !shouldAnimate() || frameCount() <= 1)
469 size_t nextFrame = (m_currentFrame + 1) % frameCount();
477 if (!m_allDataReceived && repetitionCount(false) == cAnimationLoopOnce && m_currentFrame >= (frameCount() - 1))
515 for (size_t frameAfterNext = (nextFrame + 1) % frameCount(); frameIsCompleteAtIndex(frameAfterNext); frameAfterNext = (nextFrame + 1) % frameCount())
    [all...]
ImageSource.h 113 size_t frameCount() const;
  /external/chromium_org/third_party/WebKit/Source/core/platform/image-decoders/gif/
GIFImageDecoder.h 48 virtual size_t frameCount() OVERRIDE;
  /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/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++) {
  /frameworks/av/media/libeffects/preprocessing/
PreProcessing.cpp 107 size_t frameCount; // buffer size before input resampler ( <=> apmFrameCount)
798 session->frameCount = session->apmFrameCount;
931 session->frameCount = session->apmFrameCount;
933 session->frameCount = (session->apmFrameCount * session->samplingRate) /
    [all...]

Completed in 490 milliseconds

12 3 4 5 6 7 8