Searched refs:maxInputSize (Results 1 - 7 of 7) 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);
H A Dsf2.cpp432 int32_t maxInputSize; local
433 if (meta->findInt32(kKeyMaxInputSize, &maxInputSize)) {
434 msg->setInt32("max-input-size", 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/filters/
H A DMediaFilter.cpp495 int32_t maxInputSize; local
496 if (msg->findInt32("max-input-size", &maxInputSize)
497 && (size_t)maxInputSize > mMaxInputSize) {
498 mMaxInputSize = maxInputSize;
/frameworks/av/media/libstagefright/
H A DUtils.cpp724 int32_t maxInputSize; local
725 if (meta->findInt32(kKeyMaxInputSize, &maxInputSize)) {
726 msg->setInt32("max-input-size", maxInputSize);
1352 int32_t maxInputSize; local
1353 if (msg->findInt32("max-input-size", &maxInputSize)) {
1354 meta->setInt32(kKeyMaxInputSize, maxInputSize);
H A DACodec.cpp2268 int32_t maxInputSize; local
2269 if (msg->findInt32("max-input-size", &maxInputSize)) {
2270 err = setMinBufferSize(kPortIndexInput, (size_t)maxInputSize);
/frameworks/av/media/libmediaplayerservice/
H A DStagefrightRecorder.cpp975 int32_t maxInputSize; local
977 kKeyMaxInputSize, &maxInputSize));
979 format->setInt32("max-input-size", maxInputSize);

Completed in 9046 milliseconds