Searched refs:maxInputSize (Results 1 - 6 of 6) sorted by relevance

/frameworks/av/cmds/stagefright/
H A Daudioloop.cpp106 int32_t maxInputSize; local
107 if (source->getFormat()->findInt32(kKeyMaxInputSize, &maxInputSize)) {
108 meta->setInt32("max-input-size", maxInputSize);
/frameworks/av/media/libstagefright/filters/
H A DMediaFilter.cpp433 int32_t maxInputSize; local
434 if (msg->findInt32("max-input-size", &maxInputSize)
435 && (size_t)maxInputSize > mMaxInputSize) {
436 mMaxInputSize = maxInputSize;
/frameworks/base/media/tests/MediaFrameworkTest/src/com/android/mediaframeworktest/stress/
H A DCamera2ReprocessCaptureTest.java228 Size maxInputSize = getMaxSize(inputFormat, StaticMetadata.StreamDirection.Input);
234 testReprocess(cameraId, maxInputSize, inputFormat, maxReprocessOutputSize,
238 testReprocessAbort(cameraId, maxInputSize, inputFormat, maxReprocessOutputSize,
242 testReprocessTimestamps(cameraId, maxInputSize, inputFormat, maxReprocessOutputSize,
246 testReprocessJpegExif(cameraId, maxInputSize, inputFormat, maxReprocessOutputSize);
249 testReprocessRequestKeys(cameraId, maxInputSize, inputFormat,
/frameworks/av/media/libstagefright/
H A DUtils.cpp762 int32_t maxInputSize; local
763 if (meta->findInt32(kKeyMaxInputSize, &maxInputSize)) {
764 msg->setInt32("max-input-size", maxInputSize);
1413 int32_t maxInputSize; local
1414 if (msg->findInt32("max-input-size", &maxInputSize)) {
1415 meta->setInt32(kKeyMaxInputSize, maxInputSize);
H A DACodec.cpp2249 int32_t maxInputSize; local
2250 if (msg->findInt32("max-input-size", &maxInputSize)) {
2251 err = setMinBufferSize(kPortIndexInput, (size_t)maxInputSize);
/frameworks/av/media/libmediaplayerservice/
H A DStagefrightRecorder.cpp1108 int32_t maxInputSize; local
1110 kKeyMaxInputSize, &maxInputSize));
1112 format->setInt32("max-input-size", maxInputSize);

Completed in 771 milliseconds