Home
last modified time | relevance | path

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