Searched refs:fps (Results 1 - 25 of 32) sorted by last modified time

12

/frameworks/wilhelm/include/OMXAL/
H A DOpenMAXAL.h1186 XAuint32 fps,
/frameworks/native/services/surfaceflinger/DisplayHardware/
H A DHWComposer.cpp178 disp.refresh = nsecs_t(1e9 / mFbDev->fps);
/frameworks/native/services/surfaceflinger/
H A DSurfaceFlinger.cpp722 info->fps = float(1e9 / hwc.getRefreshPeriod(type));
2544 " refresh-rate : %f fps\n"
/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/native/include/ui/
H A DDisplayInfo.h32 float fps; member in struct:android::DisplayInfo
/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/base/media/java/android/media/videoeditor/
H A DMediaArtistNativeHelper.java3312 * @param fps The fps as enum
3316 int getFrameRate(int fps) { argument
3318 switch (fps) {
/frameworks/base/media/mca/filterpacks/java/android/filterpacks/videosrc/
H A DCameraSource.java323 private int[] findClosestFpsRange(int fps, Camera.Parameters params) { argument
327 if (range[Camera.Parameters.PREVIEW_FPS_MIN_INDEX] < fps*1000 &&
328 range[Camera.Parameters.PREVIEW_FPS_MAX_INDEX] > fps*1000 &&
336 if (mLogVerbose) Log.v(TAG, "Requested fps: " + fps
/frameworks/base/media/tests/MediaFrameworkTest/src/com/android/mediaframeworktest/functional/videoeditor/
H A DMediaPropertiesTest.java73 int videoCodecType, int duration, int videoBitrate, int fps,
90 assertTrue("fps Mismatch" + mvi.getFps(),
91 mVideoEditorHelper.checkRange(fps, mvi.getFps(), 10));
143 final int fps = 15;
157 videoBitrate, fps, videoProfile, videoLevel, width, height, audioCodecType,
175 final int fps = 15;
189 videoBitrate, fps, videoProfile, videoLevel, width, height, audioCodecType,
206 final int fps = 30;
220 videoBitrate, fps, videoProfile, videoLevel, width, height, audioCodecType,
237 final int fps
72 validateVideoProperties(int aspectRatio, int fileType, int videoCodecType, int duration, int videoBitrate, int fps, int videoProfile, int videoLevel, int width, int height, int audioCodecType, int audioSamplingFrequency, int audioChannel, int audioBitrate, MediaVideoItem mvi) argument
[all...]
/frameworks/base/media/tests/MediaFrameworkTest/src/com/android/mediaframeworktest/performance/
H A DVideoEditorPerformance.java638 final int fps = 30;
/frameworks/base/media/java/android/media/
H A DMediaRecorder.java381 * @param fps Rate at which frames should be captured in frames per second.
382 * The fps can go as low as desired. However the fastest fps will be limited by the hardware.
383 * For resolutions that can be captured by the video camera, the fastest fps can be computed using
385 * resolutions the fastest fps may be more restrictive.
390 public void setCaptureRate(double fps) { argument
394 double timeBetweenFrameCapture = 1 / fps;
/frameworks/base/cmds/bootanimation/
H A DBootAnimation.cpp369 // 12fps: don't animate too fast to preserve CPU
417 int fps, width, height, count, pause; local
420 if (sscanf(l, "%d %d %d", &width, &height, &fps) == 3) {
421 //LOGD("> w=%d, h=%d, fps=%d", width, height, fps);
424 animation.fps = fps;
492 nsecs_t frameDuration = s2ns(1) / animation.fps;
H A DBootAnimation.h75 int fps; member in struct:android::BootAnimation::Animation
/frameworks/base/core/java/android/hardware/
H A DCamera.java1829 private static final String KEY_PREVIEW_FPS_RANGE = "preview-fps-range";
2132 * The array index of minimum preview fps for use with {@link
2139 * The array index of maximum preview fps for use with {@link
2488 * @param fps the frame rate (frames per second)
2492 public void setPreviewFrameRate(int fps) { argument
2493 set(KEY_PREVIEW_FRAME_RATE, fps);
2523 * Sets the minimum and maximum preview fps. This controls the rate of
2525 * maximum preview fps must be one of the elements from {@link
2528 * @param min the minimum preview fps (scaled by 1000).
2529 * @param max the maximum preview fps (scale
[all...]
/frameworks/base/core/java/android/view/
H A DViewRootImpl.java2230 float fps = (float) mFpsNumFrames * 1000 / totalTime;
2231 Log.v(TAG, "0x" + thisHash + "\tFPS:\t" + fps);
/frameworks/base/core/jni/
H A Dandroid_view_SurfaceControl.cpp366 env->SetFloatField(infoObj, gPhysicalDisplayInfoClassInfo.refreshRate, info.fps);
/frameworks/av/camera/
H A DCameraParameters.cpp33 const char CameraParameters::KEY_PREVIEW_FPS_RANGE[] = "preview-fps-range";
34 const char CameraParameters::KEY_SUPPORTED_PREVIEW_FPS_RANGE[] = "preview-fps-range-values";
397 void CameraParameters::setPreviewFrameRate(int fps) argument
399 set(KEY_PREVIEW_FRAME_RATE, fps);
H A DCameraParameters2.cpp286 void CameraParameters2::setPreviewFrameRate(int fps)
288 set(CameraParameters::KEY_PREVIEW_FRAME_RATE, fps);
/frameworks/av/cmds/screenrecord/
H A Dscreenrecord.cpp449 mainDpyInfo.w, mainDpyInfo.h, mainDpyInfo.fps,
464 err = prepareEncoder(mainDpyInfo.fps, &encoder, &bufferProducer);
477 err = prepareEncoder(mainDpyInfo.fps, &encoder, &bufferProducer);
/frameworks/av/cmds/stagefright/
H A Drecordvideo.cpp54 DummySource(int width, int height, int nFrames, int fps, int colorFormat) argument
58 mFrameRate(fps),
316 fprintf(stderr, "encoding speed is: %.2f fps\n", (nFrames * 1E9) / (end-start));
H A Dstagefright.cpp112 double fps = 1E6 / slotUs; local
113 printf("[%.2f fps]: %d\n", fps, counts[i]);
376 printf("avg. %.2f fps\n", n * 1E6 / delay);
605 fprintf(stderr, " -x display a histogram of decoding times/fps "
/frameworks/av/include/camera/
H A DCameraParameters.h91 void setPreviewFrameRate(int fps);
115 // The current minimum and maximum preview fps. This controls the rate of
117 // maximum fps must be one of the elements from
121 // The supported preview fps (frame-per-second) ranges. Each range contains
122 // a minimum fps and maximum fps. If minimum fps equals to maximum fps, the
126 // sorted from small to large (first by maximum fps and then minimum fps)
[all...]
H A DCameraParameters2.h98 void setPreviewFrameRate(int fps);
/frameworks/av/include/media/stagefright/
H A DSurfaceMediaSource.h83 // Get / Set the frame rate used for encoding. Default fps = 30
84 status_t setFrameRate(int32_t fps) ;
200 // Set to a default of 30 fps if not specified by the client side
/frameworks/av/libvideoeditor/vss/common/inc/
H A DM4WRITER_common.h133 M4OSA_Double fps; /**< Targetted framerate of the video */ member in struct:__anon208

Completed in 377 milliseconds

12