Searched defs:mCaptureSize (Results 1 - 3 of 3) sorted by relevance

/frameworks/av/include/media/
H A DVisualizer.h103 uint32_t getCaptureSize() { return mCaptureSize; }
156 uint32_t mCaptureSize; member in class:android::Visualizer
/frameworks/base/media/tests/EffectsTest/src/com/android/effectstest/
H A DVisualizerTest.java56 int mCaptureSize; field in class:VisualizerTest
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/
H A DEffectVisualizer.cpp61 uint32_t mCaptureSize; member in struct:VisualizerContext
168 pContext->mCaptureSize = VISUALIZER_CAPTURE_SIZE_MAX;
432 ALOGV("get mCaptureSize = %d", pContext->mCaptureSize);
433 *((uint32_t *)p->data + 1) = pContext->mCaptureSize;
461 pContext->mCaptureSize = *((uint32_t *)p->data + 1);
462 ALOGV("set mCaptureSize = %d", pContext->mCaptureSize);
483 if (pReplyData == NULL || *replySize != pContext->mCaptureSize) {
484 ALOGV("VISUALIZER_CMD_CAPTURE() error *replySize %d pContext->mCaptureSize
[all...]

Completed in 69 milliseconds