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),
154 mCaptureSize = size;
262 if (mCaptureSize == 0) {
268 uint32_t replySize = mCaptureSize;
276 memset(waveform, 0x80, mCaptureSize);
286 if (mCaptureSize == 0) {
292 uint8_t buf[mCaptureSize];
298 memset(fft, 0, mCaptureSize);
305 int32_t workspace[mCaptureSize >> 1];
308 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 74 uint32_t mCaptureSize;
205 pContext->mCaptureSize = VISUALIZER_CAPTURE_SIZE_MAX;
487 ALOGV("get mCaptureSize = %d", pContext->mCaptureSize);
488 *((uint32_t *)p->data + 1) = pContext->mCaptureSize;
522 pContext->mCaptureSize = *((uint32_t *)p->data + 1);
523 ALOGV("set mCaptureSize = %d", pContext->mCaptureSize);
548 if (pReplyData == NULL || *replySize != pContext->mCaptureSize) {
549 ALOGV("VISUALIZER_CMD_CAPTURE() error *replySize %d pContext->mCaptureSize %d"
    [all...]

Completed in 164 milliseconds