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

  /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 76 milliseconds