Searched refs:CountFrames (Results 1 - 25 of 28) sorted by relevance

12

/haiku/headers/private/debugger/model/
H A DStackTrace.h21 int32 CountFrames() const;
/haiku/src/kits/debugger/model/
H A DStackTrace.cpp33 StackTrace::CountFrames() const function in class:StackTrace
/haiku/src/kits/media/
H A DTrackReader.h26 int64 CountFrames(void);
H A DTrackReader.cpp190 BTrackReader::CountFrames(void) function in class:BPrivate::BTrackReader
193 return fMediaTrack ? fMediaTrack->CountFrames() : 0;
H A DSoundFile.cpp128 BSoundFile::CountFrames() const function in class:BSoundFile
417 fFrameCount = track->CountFrames();
H A DSound.cpp194 int64 frameCount = fTrackReader->CountFrames();
H A DMediaExtractor.cpp219 MediaExtractor::CountFrames(int32 stream) const function in class:MediaExtractor
H A DMediaTrack.cpp309 BMediaTrack::CountFrames() const function in class:BMediaTrack
313 int64 frames = fExtractor ? fExtractor->CountFrames(fStream) : 0;
314 // printf("BMediaTrack::CountFrames: %lld\n", frames);
/haiku/src/apps/debugger/user_interface/gui/team_window/
H A DStackTraceView.cpp46 if (fStackTrace != NULL && fStackTrace->CountFrames())
47 NotifyRowsRemoved(0, fStackTrace->CountFrames());
52 if (fStackTrace != NULL && fStackTrace->CountFrames() > 0)
53 NotifyRowsAdded(0, fStackTrace->CountFrames());
63 return fStackTrace != NULL ? fStackTrace->CountFrames() : 0;
/haiku/src/apps/debugger/user_interface/cli/commands/
H A DCliStackFrameCommand.cpp59 if (stackTrace == NULL || frameNumber >= stackTrace->CountFrames()) {
H A DCliStackTraceCommand.cpp60 int32 frameCount = stackTrace->CountFrames();
/haiku/src/kits/debugger/arch/
H A DArchitecture.cpp120 if (stackTrace->CountFrames() > 0) {
121 nextFrame = stackTrace->FrameAt(stackTrace->CountFrames() - 1);
199 if (stackTrace->CountFrames() == 0)
/haiku/src/apps/mediaplayer/supplier/
H A DMediaTrackVideoSupplier.cpp99 if (fVideoTrack->CountFrames() < 2) {
151 if (ret == B_LAST_BUFFER_ERROR && fVideoTrack->CountFrames() < 2)
163 if (fVideoTrack->CountFrames() < 2)
180 if (fVideoTrack->CountFrames() < 2)
209 if (fVideoTrack->CountFrames() < 2)
H A DMediaTrackAudioSupplier.cpp277 fCountFrames = fMediaTrack->CountFrames();
/haiku/src/apps/mediaconverter/
H A DMediaFileInfo.cpp75 videoFrames = track->CountFrames();
119 audioFrames = track->CountFrames();
H A DMediaConverterApp.cpp552 videoFrameCount = inVidTrack->CountFrames();
609 audioFrameCount = inAudTrack->CountFrames();
/haiku/headers/os/media/
H A DSoundFile.h41 off_t CountFrames() const;
H A DMediaTrack.h88 // CountFrames and Duration return the total number of frame and the
91 int64 CountFrames() const;
/haiku/src/tests/kits/media/
H A DVideoDecoder.cpp98 format.Width(), format.Height(), fMediaTrack->CountFrames(),
/haiku/headers/private/media/
H A DMediaExtractor.h54 int64 CountFrames(int32 stream) const;
/haiku/src/kits/game/
H A DSimpleGameSound.cpp160 int64 frames = audioStream->CountFrames();
H A DFileGameSound.cpp377 fAudioStream->frames = fAudioStream->stream->CountFrames();
/haiku/src/apps/soundrecorder/
H A DScopeView.cpp121 int64 framesCount = fMediaTrack->CountFrames() / SAMPLES_COUNT;
/haiku/src/apps/debugger/user_interface/gui/expression_eval_window/
H A DExpressionEvaluationWindow.cpp516 for (int32 i = 0; i < stackTrace->CountFrames(); i++) {
/haiku/src/apps/debugger/user_interface/cli/
H A DCliContext.cpp286 else if (index < 0 || index >= fCurrentStackTrace->CountFrames())

Completed in 229 milliseconds

12