HomeSort by relevance Sort by last modified time
    Searched defs:mFrameCount (Results 1 - 25 of 45) sorted by null

1 2

  /frameworks/av/services/audioflinger/
FastCaptureState.h 37 size_t mFrameCount; // number of frames per fast capture buffer
FastCapture.h 37 size_t mFrameCount;
FastMixerState.h 65 size_t mFrameCount; // number of frames per fast mix buffer
FastMixerDumpState.h 80 size_t mFrameCount;
TrackBase.h 155 const size_t mFrameCount;// size of track buffer given at createTrack() or
  /frameworks/av/services/camera/libcameraservice/device3/
Camera3IOStreamBase.h 56 uint32_t mFrameCount;
  /cts/tests/tests/media/src/android/media/cts/
IvfWriter.java 36 private int mFrameCount;
59 mFrameCount = 0;
83 mOutputFile.write(makeIvfHeader(mFrameCount, mWidth, mHeight, mScale, mRate));
96 mFrameCount++;
IvfReader.java 44 private int mFrameCount;
95 return mFrameCount;
105 if (frameIndex > mFrameCount || frameIndex < 0){
159 mFrameCount = changeEndianness(mIvfFile.readInt());
162 mFrameHeads = new int[mFrameCount];
163 mFrameSizes = new int[mFrameCount];
168 for(int i = 0; i < mFrameCount; i++){
  /frameworks/av/media/libstagefright/wifi-display/source/
RepeaterSource.h 58 int32_t mFrameCount;
  /external/chromium_org/content/public/android/javatests/src/org/chromium/content/browser/
VSyncMonitorTest.java 24 public int mFrameCount;
47 mFramePeriods[mFrameCount++] = vsyncTimeMicros - mPreviousVSyncTimeMicros;
50 if (mFrameCount >= mFramePeriods.length) {
103 assertTrue(collector.mFrameCount == totalFrames - 1);
  /frameworks/av/media/libstagefright/include/
AACEncoder.h 54 int32_t mFrameCount;
  /frameworks/base/graphics/java/android/graphics/
Interpolator.java 25 mFrameCount = 2;
31 mFrameCount = frameCount;
51 mFrameCount = frameCount;
56 return mFrameCount;
88 if (index < 0 || index >= mFrameCount) {
153 private int mFrameCount;
  /device/moto/shamu/camera/QCamera/HAL/core/src/
QCameraHWI_Record.cpp 283 static int mFrameCount;
287 mFrameCount++;
291 mFps = ((mFrameCount - mLastFrameCount) * float(s2ns(1))) / diff;
294 mLastFrameCount = mFrameCount;
  /frameworks/ex/framesequence/src/android/support/rastermill/
FrameSequence.java 32 private final int mFrameCount;
38 public int getFrameCount() { return mFrameCount; }
56 mFrameCount = frameCount;
  /sdk/eclipse/plugins/com.android.ide.eclipse.gldebugger/src/com/android/ide/eclipse/gltrace/
TraceFileWriter.java 35 private int mFrameCount = 0;
145 mFrameCount++;
154 return mFrameCount;
  /device/lge/mako/camera/QCamera/HAL/core/src/
QCameraHWI_Record.cpp 555 static int mFrameCount;
559 mFrameCount++;
563 mFps = ((mFrameCount - mLastFrameCount) * float(s2ns(1))) / diff;
566 mLastFrameCount = mFrameCount;
  /device/lge/mako/camera/
QCameraHWI_Record.cpp 556 static int mFrameCount;
560 mFrameCount++;
564 mFps = ((mFrameCount - mLastFrameCount) * float(s2ns(1))) / diff;
567 mLastFrameCount = mFrameCount;
  /frameworks/av/services/camera/libcameraservice/device2/
Camera2Device.h 147 int mFrameCount;
249 uint32_t mFrameCount;
337 uint32_t mFrameCount;
  /hardware/libhardware/tests/camera2/
camera2_utils.h 75 int mFrameCount;
  /hardware/ti/omap4-aah/camera/inc/
BufferSourceAdapter.h 50 mFrameCount = 0;
59 mFrameCount++;
73 if ( 0 >= mFrameCount ) {
78 mFrameCount--;
87 int mFrameCount;
  /hardware/ti/omap4xxx/camera/V4LCameraAdapter/
V4LCameraAdapter.cpp 430 static int mFrameCount = 0;
434 mFrameCount++;
435 if (!(mFrameCount & 0x1F)) {
438 mFps = ((mFrameCount - mLastFrameCount) * float(s2ns(1))) / diff;
440 mLastFrameCount = mFrameCount;
441 ALOGD("Camera %d Frames, %f FPS", mFrameCount, mFps);
450 mFrameCount++;
452 if ( ( mFrameCount % FPS_PERIOD ) == 0 )
456 currentFPS = ((mFrameCount - mLastFrameCount) * float(s2ns(1))) / diff;
458 mLastFrameCount = mFrameCount;
    [all...]
  /hardware/ti/omap4xxx/camera/inc/V4LCameraAdapter/
V4LCameraAdapter.h 135 int mFrameCount;
  /frameworks/av/include/media/
AudioRecord.h 223 size_t frameCount() const { return mFrameCount; }
485 size_t mFrameCount; // corresponds to current IAudioRecord, value is
  /hardware/ti/omap4-aah/camera/inc/V4LCameraAdapter/
V4LCameraAdapter.h 214 int mFrameCount;
  /frameworks/av/include/private/media/
AudioTrackShared.h 154 size_t mFrameCount; // number of frames available in this buffer
165 const size_t mFrameCount; // not necessarily a power of 2
167 const size_t mFrameCountP2; // mFrameCount rounded to power of 2, streaming mode
191 // buffer->mFrameCount should be initialized to maximum number of desired frames,
202 // buffer->mFrameCount has the actual number of contiguous available frames,
206 // or NULL when buffer->mFrameCount == 0.
208 // NO_ERROR Success, buffer->mFrameCount > 0.
216 // Assertion failure on entry, if buffer == NULL or buffer->mFrameCount == 0.
221 // On entry, buffer->mFrameCount should have the number of frames to release,
226 // buffer->mFrameCount is zero
    [all...]

Completed in 1735 milliseconds

1 2