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

  /frameworks/av/media/libmedia/
Visualizer.cpp 43 mCaptureSize(CAPTURE_SIZE_DEF),
159 mCaptureSize = size;
267 if (mCaptureSize == 0) {
273 uint32_t replySize = mCaptureSize;
281 memset(waveform, 0x80, mCaptureSize);
291 if (mCaptureSize == 0) {
297 uint8_t buf[mCaptureSize];
303 memset(fft, 0, mCaptureSize);
310 int32_t workspace[mCaptureSize >> 1];
313 for (uint32_t i = 0; i < mCaptureSize; i += 2)
    [all...]
  /frameworks/av/include/media/
Visualizer.h 103 uint32_t getCaptureSize() { return mCaptureSize; }
164 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 75 uint32_t mCaptureSize;
206 pContext->mCaptureSize = VISUALIZER_CAPTURE_SIZE_MAX;
489 ALOGV("get mCaptureSize = %" PRIu32, pContext->mCaptureSize);
490 *((uint32_t *)p->data + 1) = pContext->mCaptureSize;
524 pContext->mCaptureSize = *((uint32_t *)p->data + 1);
525 ALOGV("set mCaptureSize = %" PRIu32, pContext->mCaptureSize);
550 uint32_t captureSize = pContext->mCaptureSize;

Completed in 97 milliseconds