Searched defs:maxInputSize (Results 1 - 5 of 5) 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/av/media/libmediaplayerservice/
H A DStagefrightRecorder.cpp1108 int32_t maxInputSize; local
1110 kKeyMaxInputSize, &maxInputSize));
1112 format->setInt32("max-input-size", maxInputSize);
/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);

Completed in 2490 milliseconds