HomeSort by relevance Sort by last modified time
    Searched defs:mCaptureSize (Results 1 - 5 of 5) sorted by null

  /hardware/interfaces/audio/effect/all-versions/default/include/effect/all-versions/default/
VisualizerEffect.h 111 uint16_t mCaptureSize;
  /packages/apps/Camera2/src/com/android/camera/one/
OneCameraCaptureSetting.java 36 private final Size mCaptureSize;
78 mCaptureSize = captureSize;
86 return mCaptureSize;
  /frameworks/av/media/libmedia/include/media/
Visualizer.h 104 uint32_t getCaptureSize() { return mCaptureSize; }
165 uint32_t mCaptureSize;
  /frameworks/base/media/tests/EffectsTest/src/com/android/effectstest/
VisualizerTest.java 56 int mCaptureSize;
122 if (mCaptureSize > 0) {
123 byte[] data = new byte[mCaptureSize];
125 int len = data.length < mCaptureSize ? data.length : mCaptureSize;
131 int len = data.length < mCaptureSize ? data.length : mCaptureSize;
270 mCaptureSize = mVisualizer.getCaptureSize();
  /frameworks/av/media/libeffects/visualizer/
EffectVisualizer.cpp 80 uint32_t mCaptureSize;
211 pContext->mCaptureSize = VISUALIZER_CAPTURE_SIZE_MAX;
492 ALOGV("get mCaptureSize = %" PRIu32, pContext->mCaptureSize);
493 *((uint32_t *)p->data + 1) = pContext->mCaptureSize;
531 ALOGW("set mCaptureSize = %u > %u", captureSize, VISUALIZER_CAPTURE_SIZE_MAX);
533 pContext->mCaptureSize = captureSize;
534 ALOGV("set mCaptureSize = %u", captureSize);
564 uint32_t captureSize = pContext->mCaptureSize;

Completed in 124 milliseconds