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 42 mCaptureSize(CAPTURE_SIZE_DEF),
152 mCaptureSize = size;
193 if (mCaptureSize == 0) {
199 uint32_t replySize = mCaptureSize;
207 memset(waveform, 0x80, mCaptureSize);
217 if (mCaptureSize == 0) {
223 uint8_t buf[mCaptureSize];
229 memset(fft, 0, mCaptureSize);
236 int32_t workspace[mCaptureSize >> 1];
239 for (uint32_t i = 0; i < mCaptureSize; i += 2)
    [all...]
  /frameworks/av/media/libeffects/visualizer/
EffectVisualizer.cpp 61 uint32_t mCaptureSize;
168 pContext->mCaptureSize = VISUALIZER_CAPTURE_SIZE_MAX;
415 ALOGV("get mCaptureSize = %d", pContext->mCaptureSize);
416 *((uint32_t *)p->data + 1) = pContext->mCaptureSize;
444 pContext->mCaptureSize = *((uint32_t *)p->data + 1);
445 ALOGV("set mCaptureSize = %d", pContext->mCaptureSize);
466 if (pReplyData == NULL || *replySize != pContext->mCaptureSize) {
467 ALOGV("VISUALIZER_CMD_CAPTURE() error *replySize %d pContext->mCaptureSize %d"
    [all...]
  /frameworks/av/include/media/
Visualizer.h 103 uint32_t getCaptureSize() { return mCaptureSize; }
156 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();

Completed in 3124 milliseconds