Searched defs: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);
H A Dsf2.cpp432 int32_t maxInputSize; local
433 if (meta->findInt32(kKeyMaxInputSize, &maxInputSize)) {
434 msg->setInt32("max-input-size", maxInputSize);
/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/libmediaplayerservice/
H A DStagefrightRecorder.cpp975 int32_t maxInputSize; local
977 kKeyMaxInputSize, &maxInputSize));
979 format->setInt32("max-input-size", 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);

Completed in 981 milliseconds