Searched refs:captureFps (Results 1 - 4 of 4) sorted by relevance

/frameworks/av/include/media/stagefright/
H A DMPEG4Writer.h67 status_t setCaptureRate(float captureFps);
/frameworks/base/media/tests/MediaFrameworkTest/src/com/android/mediaframeworktest/functional/mediarecorder/
H A DMediaRecorderTest.java450 String captureFps = retriever.extractMetadata(
453 if (captureFps == null) {
458 if (Math.abs(Float.parseFloat(captureFps) - captureRate) > 0.001) {
460 + captureFps + "vs. " + captureRate);
/frameworks/av/media/libstagefright/
H A DStagefrightMetadataRetriever.cpp637 float captureFps; local
638 if (meta->findFloat(kKeyCaptureFramerate, &captureFps)) {
639 sprintf(tmp, "%f", captureFps);
H A DMPEG4Writer.cpp1373 status_t MPEG4Writer::setCaptureRate(float captureFps) { argument
1374 if (captureFps <= 0.0f) {
1378 mMetaKeys->setFloat(kMetaKey_CaptureFps, captureFps);

Completed in 1815 milliseconds