Searched refs:fps (Results 1 - 25 of 38) sorted by relevance

12

/frameworks/native/include/ui/
H A DDisplayInfo.h33 float fps; member in struct:android::DisplayInfo
/frameworks/native/opengl/tests/testFramerate/src/com/android/testframerate/
H A DTestFramerateView.java53 float fps = 1000000.f / elapsedTime_us;
55 Log.v(TAG, "Long frame: " + elapsedTime_us/1000.f + " ms (" + fps + " fps)");
/frameworks/av/include/media/stagefright/
H A DVideoFrameScheduler.h57 void reset(float fps = -1);
H A DSurfaceMediaSource.h87 // Get / Set the frame rate used for encoding. Default fps = 30
88 status_t setFrameRate(int32_t fps) ;
209 // Set to a default of 30 fps if not specified by the client side
/frameworks/base/media/mca/filterpacks/java/android/filterpacks/videosrc/
H A DCameraSource.java316 private int[] findClosestFpsRange(int fps, Camera.Parameters params) { argument
320 if (range[Camera.Parameters.PREVIEW_FPS_MIN_INDEX] < fps*1000 &&
321 range[Camera.Parameters.PREVIEW_FPS_MAX_INDEX] > fps*1000 &&
329 if (mLogVerbose) Log.v(TAG, "Requested fps: " + fps
/frameworks/av/media/libstagefright/wifi-display/
H A DVideoFormats.cpp184 size_t width, height, fps, score; local
187 &fps, &interlaced)) {
191 score = width * height * fps * (!interlaced + 1);
195 &width, &height, &fps, &interlaced)
196 && score >= width * height * fps * (!interlaced + 1)) {
/frameworks/av/include/camera/
H A DCameraParameters2.h98 void setPreviewFrameRate(int fps);
H A DCameraParameters.h91 void setPreviewFrameRate(int fps);
124 // The current minimum and maximum preview fps. This controls the rate of
126 // maximum fps must be one of the elements from
130 // The supported preview fps (frame-per-second) ranges. Each range contains
131 // a minimum fps and maximum fps. If minimum fps equals to maximum fps, the
135 // sorted from small to large (first by maximum fps and then minimum fps)
[all...]
/frameworks/av/media/libstagefright/
H A DSurfaceMediaSource.cpp118 status_t SurfaceMediaSource::setFrameRate(int32_t fps) argument
123 if (fps < 0 || fps > MAX_FRAME_RATE) {
126 mFrameRate = fps;
H A DVideoFrameScheduler.cpp74 void VideoFrameScheduler::PLL::reset(float fps) { argument
81 if (fps <= 0.f) {
85 ALOGV("reset at %.1f fps", fps);
86 mPeriod = (nsecs_t)(1e9 / fps + 0.5);
H A DMediaSync.cpp374 float fps = mFrameScheduler->getFrameRate(); local
375 if (fps > 0.f) {
376 return fps;
583 // smooth out videos >= 10fps
H A DUtils.cpp745 int32_t fps; local
746 if (meta->findInt32(kKeyFrameRate, &fps) && fps > 0) {
747 msg->setInt32("frame-rate", fps);
1382 int32_t fps; local
1384 if (msg->findInt32("frame-rate", &fps) && fps > 0) {
1385 meta->setInt32(kKeyFrameRate, fps);
1388 // truncate values to distinguish between e.g. 24 vs 23.976 fps
1735 msg->setFloat("video-fps", videoFpsHin
[all...]
/frameworks/base/cmds/bootanimation/
H A DBootAnimation.h104 int fps; member in struct:android::BootAnimation::Animation
H A DBootAnimation.cpp394 // 12fps: don't animate too fast to preserve CPU
542 int fps = 0; local
552 if (sscanf(l, "%d %d %d", &width, &height, &fps) == 3) {
553 // ALOGD("> w=%d, h=%d, fps=%d", width, height, fps);
556 animation.fps = fps;
769 nsecs_t frameDuration = s2ns(1) / animation.fps;
/frameworks/av/cmds/stagefright/
H A Drecordvideo.cpp62 DummySource(int width, int height, int nFrames, int fps, int colorFormat) argument
66 mFrameRate(fps),
334 fprintf(stderr, "encoding speed is: %.2f fps\n", (nFrames * 1E9) / (end-start));
/frameworks/av/media/libmediaplayerservice/nuplayer/
H A DNuPlayerRenderer.h71 void setVideoFrameRate(float fps);
250 void onSetVideoFrameRate(float fps);
H A DNuPlayerRenderer.cpp329 void NuPlayer::Renderer::setVideoFrameRate(float fps) { argument
331 msg->setFloat("frame-rate", fps);
660 float fps; local
661 CHECK(msg->findFloat("frame-rate", &fps));
662 onSetVideoFrameRate(fps);
1187 // smooth out videos >= 10fps
1285 // Also smooth out videos >= 10fps.
1705 void NuPlayer::Renderer::onSetVideoFrameRate(float fps) { argument
1709 mVideoScheduler->init(fps);
/frameworks/base/tests/SurfaceComposition/src/android/surfacecomposition/
H A DSurfaceCompositionMeasuringActivity.java394 Measurement(int surfaceCnt, double fps) { argument
396 mFPS = fps;
426 double fps = mViews.get(0).measureFPS(mRefreshRate * 0.8, mRefreshRate * 0.999);
431 return fps;
/frameworks/av/camera/
H A DCameraParameters2.cpp286 void CameraParameters2::setPreviewFrameRate(int fps)
288 set(CameraParameters::KEY_PREVIEW_FRAME_RATE, fps);
H A DCameraParameters.cpp34 const char CameraParameters::KEY_PREVIEW_FPS_RANGE[] = "preview-fps-range";
35 const char CameraParameters::KEY_SUPPORTED_PREVIEW_FPS_RANGE[] = "preview-fps-range-values";
398 void CameraParameters::setPreviewFrameRate(int fps) argument
400 set(KEY_PREVIEW_FRAME_RATE, fps);
/frameworks/base/media/java/android/media/
H A DMediaRecorder.java508 * @param fps Rate at which frames should be captured in frames per second.
509 * The fps can go as low as desired. However the fastest fps will be limited by the hardware.
510 * For resolutions that can be captured by the video camera, the fastest fps can be computed using
512 * resolutions the fastest fps may be more restrictive.
517 public void setCaptureRate(double fps) { argument
520 setParameter("time-lapse-fps=" + fps);
/frameworks/base/tests/Camera2Tests/SmartCamera/SimpleCamera/src/androidx/media/filterfw/
H A DCameraStreamer.java1031 public synchronized void setDesiredFrameRate(int fps) { argument
1032 if (fps != mRequestedFramesPerSec) {
1033 mRequestedFramesPerSec = fps;
1357 private int[] findClosestFpsRange(int fps, Camera.Parameters params) { argument
1360 int fpsk = fps * 1000;
1594 * @param fps The desired FPS.
1596 public void setDesiredFrameRate(int fps) { argument
1597 mCameraRunner.setDesiredFrameRate(fps);
/frameworks/av/cmds/screenrecord/
H A Dscreenrecord.cpp551 mainDpyInfo.w, mainDpyInfo.h, mainDpyInfo.fps,
568 err = prepareEncoder(mainDpyInfo.fps, &encoder, &encoderInputSurface);
581 err = prepareEncoder(mainDpyInfo.fps, &encoder,
/frameworks/av/media/libmediaplayerservice/
H A DStagefrightRecorder.h170 status_t setParamCaptureFps(float fps);
H A DStagefrightRecorder.cpp553 // 60000 is chosen to make sure that each video frame from a 60-fps
588 status_t StagefrightRecorder::setParamCaptureFps(float fps) { argument
589 ALOGV("setParamCaptureFps: %.2f", fps);
591 int64_t timeUs = (int64_t) (1000000.0 / fps + 0.5f);
599 mCaptureFps = fps;
727 } else if (key == "time-lapse-fps") {
728 float fps; local
729 if (safe_strtof(value.string(), &fps)) {
730 return setParamCaptureFps(fps);
1179 "vid.fps", mCameraI
[all...]

Completed in 684 milliseconds

12