Home | History | Annotate | Download | only in libstagefright

Lines Matching refs:frameRate

135     int32_t frameRate,
140 videoSize, frameRate, surface,
150 int32_t frameRate,
171 videoSize, frameRate,
282 * if frameRate is -1, configuration on the frame rate
290 * @param frameRate the target frame rate in frames per second.
296 int32_t frameRate) {
324 if (frameRate != -1) {
325 CHECK(frameRate > 0 && frameRate <= 120);
331 snprintf(buf, 4, "%d", frameRate);
334 frameRate, supportedFrameRates);
339 params->setPreviewFrameRate(frameRate);
341 } else { // frameRate == -1
414 * If the target frameRate is -1, check on the current frame rate value
423 int32_t frameRate) {
434 if (frameRate != -1 && (frameRateActual - frameRate) != 0) {
436 "frame rate is %d", frameRate, frameRateActual);
454 * @param frameRate the target frame rate in frames per second.
468 int32_t frameRate,
475 videoSize, frameRate,
486 int32_t frameRate,
504 frameRate))) {
514 if ((err = checkFrameRate(newCameraParams, frameRate)) != OK) {