Searched refs:frames (Results 51 - 75 of 92) sorted by relevance

1234

/haiku/src/system/kernel/arch/m68k/
H A Darch_thread.cpp49 stack->frames[stack->index++] = frame;
72 return thread->arch_info.iframes.frames[thread->arch_info.iframes.index - 1];
89 struct iframe *frame = thread->arch_info.iframes.frames[i];
165 // space for frame pointer and return address, and stack frames must be
/haiku/src/bin/fwcontrol/
H A Dfwdv.c272 int len, tlen, header, fd, frames, packets, vec, offset, nhdr, i; local
330 frames = 0;
367 fprintf(stderr, "%d", frames % 10);
368 frames ++;
369 if (count > 0 && frames > count)
371 if (frames % frame_rate[system] == 0)
426 fprintf(stderr, "%d frames, %.2f secs, %.2f frames/sec\n",
427 frames, rtime, frames/rtim
[all...]
/haiku/src/add-ons/media/plugins/raw_decoder/
H A DRawDecoderPlugin.cpp500 int32 frames = min_c(fOutputBufferFrameCount - *frameCount, local
502 if (frames == 0)
505 int32 samples = frames * fInputFormat.u.raw_audio.channel_count;
507 fChunkBuffer = (const char *)fChunkBuffer + frames * fInputFrameSize;
508 fChunkSize -= frames * fInputFrameSize;
509 output_buffer += frames * fOutputFrameSize;
510 *frameCount += frames;
511 fStartTime += (1000000LL * frames) / fFrameRate;
/haiku/src/add-ons/media/media-add-ons/mixer/
H A DMixerInput.cpp156 double frames = ((double)in_frames * fMixBufferFrameRate) local
158 int out_frames = int(frames);
159 fFractionalFrames += frames - double(out_frames);
229 // printf("data arrived for %10Ld to %10Ld, storing at frames %ld to %ld\n",
241 // "frames %ld to %ld and %ld to %ld\n", fCore->fTimeSource->Now(),
247 "frames %ld to %ld and %ld to %ld\n", fCore->fTimeSource->Now(),
259 // convert offset from frames into bytes
283 // "frames %ld to %ld\n", fCore->fTimeSource->Now(), start,
288 "frames %ld to %ld\n", fCore->fTimeSource->Now(), start,
295 // convert offset from frames int
671 SetMixBufferFormat(int32 framerate, int32 frames) argument
[all...]
H A DMixerUtils.h38 bigtime_t duration_for_frames(double framerate, int64 frames);
H A DMixerInput.h76 int32 frames);
158 PRINT(3, "GetMixerChannelInfo: frames %ld to %ld\n", offset,
/haiku/src/kits/midi/
H A DSamples.cpp45 void* sampleData, int32 frames, int16 bytes_per_sample,
44 Start( void* sampleData, int32 frames, int16 bytes_per_sample, int16 channel_count, double pitch, int32 loopStart, int32 loopEnd, double sampleVolume, double stereoPosition, int32 hook_arg, sample_loop_hook pLoopContinueProc, sample_exit_hook pDoneProc) argument
/haiku/src/apps/soundrecorder/
H A DScopeView.cpp127 int64 frames = 0; local
132 //fMediaTrack->SeekToFrame(&frames);
138 while (fIsRendering && fMediaTrack->ReadFrames(samples, &frames) == B_OK) {
142 while (framesIndex < frames) {
143 for (; framesIndex < frames && sumCount < framesCount;
H A DRecorderWindow.cpp1255 int64 frames = 0;
1256 window->fPlayTrack->ReadFrames(data, &frames);
1387 int64 frames = 0;
1388 status_t err = fPlayTrack->ReadFrames(data, &frames);
1389 if (frames <= 0 || err != B_OK) {
1394 file.Write(data, frames * frameSize);
1395 framesToWrite -= frames;
/haiku/src/kits/game/
H A DGameSoundDevice.h51 int64 frames);
H A DGameSoundDevice.cpp144 const void* data, int64 frames)
146 if (frames <= 0 || !sound)
156 fSounds[position] = new SimpleSoundBuffer(format, data, frames);
143 CreateBuffer(gs_id* sound, const gs_audio_format* format, const void* data, int64 frames) argument
H A DFileGameSound.cpp29 int64 frames; member in struct:_gs_media_tracker
377 fAudioStream->frames = fAudioStream->stream->CountFrames();
396 int64 frames = 0;
397 fAudioStream->stream->ReadFrames(fBuffer, &frames);
398 fBufferSize = frames * fFrameSize;
/haiku/headers/private/kernel/arch/arm/
H A Darch_thread_types.h11 /* raw exception frames */
37 struct iframe *frames[IFRAME_TRACE_DEPTH]; member in struct:iframe_stack
/haiku/src/system/kernel/arch/ppc/
H A Darch_debug.cpp165 frameStack->frames[i], frameStack->frames[i] + 1);
188 if (framePointer == (((addr_t)frameStack->frames[i] - 8) & ~0xf)) {
190 frame = frameStack->frames[i];
/haiku/src/add-ons/screen_savers/ifs/
H A DIFS.h93 int32 frames);
H A DIFSSaver.cpp207 int32 frames = frame - fLastDrawnFrame; local
209 fIFS->Draw(view, NULL, frames);
/haiku/src/apps/mediaplayer/playlist/
H A DPlaylistListView.h60 void _Wind(bigtime_t howMuch, int64 frames);
H A DPlaylistListView.cpp460 PlaylistListView::_Wind(bigtime_t howMuch, int64 frames) argument
465 if (frames != 0 && !fController->IsPlaying()) {
466 int64 newFrame = fController->CurrentFrame() + frames;
/haiku/src/add-ons/media/plugins/ffmpeg/
H A DAVCodecDecoder.cpp375 // the audio container (e.g. WMA) and not in the audio frames
428 // Initialize variables needed to manage decoding as much audio frames as
475 // the video container (e.g. WMV) and not in the video frames
538 // Progressive (non-interlaced) video frames are delivered
548 // the video frames have timestamps that are several hundred values apart. This allows for
592 /*! \brief Fills the outBuffer with one or more already decoded audio frames.
598 frames to.
600 copied audio frames (usually several audio frames at once).
605 \returns B_OK Decoding audio frames succeede
943 int32 frames = min_c(outFrames, inFrames); local
[all...]
/haiku/src/system/kernel/arch/arm/
H A Darch_debug.cpp374 frameStack->frames[i], frameStack->frames[i] + 1);
397 if (fp == (addr_t)frameStack->frames[i]) {
399 frame = frameStack->frames[i];
/haiku/src/system/kernel/arch/arm64/
H A Darch_debug.cpp364 frameStack->frames[i], frameStack->frames[i] + 1);
387 if (fp == (addr_t)frameStack->frames[i]) {
389 frame = frameStack->frames[i];
H A Darch_thread.cpp34 stack->frames[stack->index++] = frame;
/haiku/src/apps/mediaplayer/
H A DMainWin.h112 void _Wind(bigtime_t howMuch, int64 frames);
/haiku/src/kits/media/
H A DMediaTrack.cpp313 int64 frames = fExtractor ? fExtractor->CountFrames(fStream) : 0; local
314 // printf("BMediaTrack::CountFrames: %lld\n", frames);
315 return frames;
410 "%lld frames\n", fStream, _header->start_time / 1000000,
1105 int64 frames; local
1107 status_t result = fDecoder->Decode(fBuffer, &frames, header, &info);
1110 *chunkSize = frames * fFrameSize;
1111 // printf("RawDecoderChunkProvider::GetNextChunk, %lld frames, "
1112 // "%ld bytes, start-time %lld\n", frames, *chunkSize,
/haiku/src/add-ons/kernel/file_systems/cdda/
H A Dkernel_interface.cpp117 uint64 start, uint64 frames, int32 type);
176 const char* name, uint64 start, uint64 frames,
678 uint64 frames = next.minute * kFramesPerMinute local
686 frames -= kDataTrackLeadGap;
688 totalFrames += frames;
712 Inode* inode = _CreateNode(fRootNode, title, startFrame, frames,
853 uint64 frames, int32 type)
855 Inode* inode = new(std::nothrow) Inode(this, parent, name, start, frames,
1164 uint64 frames, int32 type)
1173 fFrameCount = frames;
852 _CreateNode(Inode* parent, const char* name, uint64 start, uint64 frames, int32 type) argument
1163 Inode(Volume* volume, Inode* parent, const char* name, uint64 start, uint64 frames, int32 type) argument
[all...]

Completed in 163 milliseconds

1234