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

1 2

  /external/chromium_org/third_party/WebKit/Source/core/platform/audio/
AudioChannel.cpp 73 void AudioChannel::copyFromRange(const AudioChannel* sourceChannel, unsigned startFrame, unsigned endFrame)
76 bool isRangeSafe = sourceChannel && startFrame < endFrame && endFrame <= sourceChannel->length();
85 size_t rangeLength = endFrame - startFrame;
100 memcpy(destination, source + startFrame, sizeof(float) * rangeLength);
AudioChannel.h 121 void copyFromRange(const AudioChannel* sourceChannel, unsigned startFrame, unsigned endFrame);
AudioBus.h 107 static PassRefPtr<AudioBus> createBufferFromRange(const AudioBus* sourceBuffer, unsigned startFrame, unsigned endFrame);
HRTFElevation.cpp 169 unsigned startFrame = index * ResponseFrameSize;
170 unsigned stopFrame = startFrame + ResponseFrameSize;
171 RefPtr<AudioBus> preSampleRateConvertedResponse(AudioBus::createBufferFromRange(bus.get(), startFrame, stopFrame));
AudioBus.cpp 172 PassRefPtr<AudioBus> AudioBus::createBufferFromRange(const AudioBus* sourceBuffer, unsigned startFrame, unsigned endFrame)
178 bool isRangeSafe = startFrame < endFrame && endFrame <= numberOfSourceFrames;
183 size_t rangeLength = endFrame - startFrame;
189 audioBus->channel(i)->copyFromRange(sourceBuffer->channel(i), startFrame, 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/chromium_org/chrome/browser/ui/cocoa/
animatable_image.h 38 @property(nonatomic) CGRect startFrame;
46 // |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);
  /external/chromium_org/third_party/WebKit/Source/modules/webaudio/
AudioScheduledSourceNode.cpp 69 // startFrame : Start frame for this source.
73 size_t startFrame = AudioUtilities::timeToSampleFrame(m_startTime, sampleRate);
80 if (m_playbackState == UNSCHEDULED_STATE || m_playbackState == FINISHED_STATE || startFrame >= quantumEndFrame) {
94 quantumFrameOffset = startFrame > quantumStartFrame ? startFrame - quantumStartFrame : 0;
  /frameworks/av/media/libstagefright/
AudioSource.cpp 179 int32_t startFrame, int32_t rampDurationFrames,
183 int32_t fixedMultiplier = (startFrame << kShift) / rampDurationFrames;
185 int32_t stopFrame = startFrame + bytes / sizeof(int16_t);
191 while (startFrame < stopFrame) {
195 ++startFrame;
200 startFrame += 2;
204 if ((startFrame & 3) == 0) {
205 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...]
  /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/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...]

Completed in 690 milliseconds

1 2