Home
last modified time | relevance | path

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

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