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

1 2

  /external/webkit/Source/WebCore/platform/audio/
AudioChannel.cpp 60 void AudioChannel::copyFromRange(const AudioChannel* sourceChannel, unsigned startFrame, unsigned endFrame)
63 bool isRangeSafe = sourceChannel && startFrame < endFrame && endFrame <= sourceChannel->length();
69 size_t rangeLength = endFrame - startFrame;
77 memcpy(destination, source + startFrame, sizeof(float) * rangeLength);
AudioChannel.h 95 void copyFromRange(const AudioChannel* sourceChannel, unsigned startFrame, unsigned endFrame);
AudioBus.cpp 146 PassOwnPtr<AudioBus> AudioBus::createBufferFromRange(AudioBus* sourceBuffer, unsigned startFrame, unsigned endFrame)
152 bool isRangeSafe = startFrame < endFrame && endFrame <= numberOfSourceFrames;
157 size_t rangeLength = endFrame - startFrame;
163 audioBus->channel(i)->copyFromRange(sourceBuffer->channel(i), startFrame, endFrame);
AudioBus.h 90 static PassOwnPtr<AudioBus> createBufferFromRange(AudioBus* sourceBuffer, unsigned startFrame, unsigned endFrame);
  /external/chromium/chrome/browser/ui/cocoa/
animatable_image.h 39 @property(nonatomic) CGRect startFrame;
47 // |animationFrame| should usually be big enough to contain the |startFrame|
  /external/qemu/distrib/sdl-1.2.15/src/cdrom/macosx/
CDPlayer.h 47 int LoadFile (const FSRef *ref, int startFrame, int endFrame); /* pass -1 to do nothing */
SDL_syscdrom.c 121 int startFrame, stopFrame;
128 nextTrackFramesRemaining, &startFrame, &stopFrame);
136 LoadFile (file, startFrame, stopFrame);
350 int startFrame, stopFrame;
369 ref = GetFileForOffset (cdrom, start, length, &startFrame, &stopFrame);
375 if (LoadFile (ref, startFrame, stopFrame) < 0)
CDPlayer.c 392 int LoadFile (const FSRef *ref, int startFrame, int stopFrame)
404 printf ("LoadFile: %d %d\n", startFrame, stopFrame);
420 if (startFrame >= 0)
421 thePlayer->SetStartFrame (thePlayer, startFrame);
423 if (stopFrame >= 0 && stopFrame > startFrame)
  /external/jmonkeyengine/engine/src/blender/com/jme3/scene/plugins/blender/animations/
Ipo.java 113 * @param startFrame
126 public Track calculateTrack(int targetIndex, int startFrame, int stopFrame, int fps, boolean spatialTrack) {
129 int framesAmount = stopFrame - startFrame;
130 float start = (startFrame - 1.0f) / fps;
144 for (int frame = startFrame; frame <= stopFrame; ++frame) {
145 int index = frame - startFrame;
IpoHelper.java 195 public BoneTrack calculateTrack(int boneIndex, int startFrame, int stopFrame, int fps, boolean boneTrack) {
  /external/jmonkeyengine/engine/src/core/com/jme3/animation/
BoneTrack.java 219 int startFrame = 0;
224 startFrame = i;
228 float blend = (time - times[startFrame])
229 / (times[endFrame] - times[startFrame]);
231 rotations.get(startFrame, tempQ);
232 translations.get(startFrame, tempV);
234 scales.get(startFrame, tempS);
SpatialTrack.java 96 int startFrame = 0;
100 startFrame = i;
104 float blend = (time - times[startFrame]) / (times[endFrame] - times[startFrame]);
107 rotations.get(startFrame, tempQ);
109 translations.get(startFrame, tempV);
111 scales.get(startFrame, tempS);
  /frameworks/av/media/libstagefright/
AudioSource.cpp 184 int32_t startFrame, int32_t rampDurationFrames,
188 int32_t fixedMultiplier = (startFrame << kShift) / rampDurationFrames;
190 int32_t stopFrame = startFrame + bytes / sizeof(int16_t);
196 while (startFrame < stopFrame) {
200 ++startFrame;
205 startFrame += 2;
209 if ((startFrame & 3) == 0) {
210 fixedMultiplier = (startFrame << kShift) / rampDurationFrames;
  /external/srec/portable/src/
pstream.c 284 PortFile->startFrame = (FileBufferFrame *)start;
288 PortFile->startFrame = CreateFileBufferFrame(size, (unsigned char *)start);
291 start = (const unsigned char *)PortFile->startFrame;
295 if (PortFile->startFrame == NULL)
301 PortFile->endFrame = PortFile->curFrame = PortFile->startFrame;
376 DeleteFileBuffers(PortFile->startFrame);
530 PortFile->curFrame = PortFile->startFrame;
531 PortFile->curPos = PortFile->startFrame->buffer;
568 if (PortFile->startFrame->buffer == PortFile->curPos) /* start of file */
732 /* assgin it as startFrame, so others could get information when reopen it *
    [all...]
  /external/webkit/Source/WebCore/webaudio/
AudioBufferSourceNode.cpp 169 unsigned startFrame = m_isGrain ? static_cast<unsigned>(m_grainOffset * bufferSampleRate) : 0;
170 unsigned endFrame = m_isGrain ? static_cast<unsigned>(startFrame + m_grainDuration * bufferSampleRate) : bufferLength;
178 if (startFrame >= bufferLength)
179 startFrame = !bufferLength ? 0 : bufferLength - 1;
183 m_readIndex = startFrame; // reset to start
236 m_readIndex = startFrame;
  /frameworks/av/include/media/stagefright/
AudioSource.h 96 int32_t startFrame, int32_t rampDurationFrames,
  /external/srec/portable/include/
pstream.h 39 struct FileBufferFrame *startFrame;
  /packages/apps/VideoEditor/src/com/android/videoeditor/widgets/
AudioTrackView.java 300 final int startFrame = (int)(audioTrack.getBoundaryBeginTime() /
317 index = startFrame + (int)(framesPerPixel * i);
322 if (index == startFrame) { // Draw the loop delineation
333 index = startFrame + (int)(framesPerPixel * i);
  /external/webkit/Source/WebCore/page/
Page.cpp 509 Frame* startFrame = frame;
512 if (frame != startFrame)
513 startFrame->selection()->clear();
518 } while (frame && frame != startFrame);
520 // Search contents of startFrame, on the other side of the selection that we did earlier.
522 if (shouldWrap && !startFrame->selection()->isNone()) {
523 bool found = startFrame->editor()->findString(target, options | WrapAround | StartInSelection);
  /external/esd/include/
audiofile.h 555 AFframecount startFrame);
558 AFframecount startFrame);
  /prebuilts/gcc/linux-x86/host/i686-linux-glibc2.7-4.4.3/sysroot/usr/include/
audiofile.h 555 AFframecount startFrame);
558 AFframecount startFrame);
  /prebuilts/gcc/linux-x86/host/i686-linux-glibc2.7-4.6/sysroot/usr/include/
audiofile.h 555 AFframecount startFrame);
558 AFframecount startFrame);
  /prebuilts/gcc/linux-x86/host/x86_64-linux-glibc2.7-4.6/sysroot/usr/include/
audiofile.h 555 AFframecount startFrame);
558 AFframecount startFrame);
  /dalvik/vm/jdwp/
JdwpHandler.cpp 1106 u4 startFrame = read4BE(&buf);
1120 threadId, startFrame, length, frameCount);
    [all...]
  /frameworks/base/libs/hwui/
OpenGLRenderer.h 401 status_t startFrame();
    [all...]

Completed in 779 milliseconds

1 2