Searched defs:fps (Results 1 - 16 of 16) sorted by relevance

/frameworks/native/include/ui/
H A DDisplayInfo.h32 float fps; member in struct:android::DisplayInfo
/frameworks/base/cmds/bootanimation/
H A DBootAnimation.h75 int fps; member in struct:android::BootAnimation::Animation
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;
/frameworks/av/cmds/stagefright/
H A Drecordvideo.cpp54 DummySource(int width, int height, int nFrames, int fps, int colorFormat) argument
58 mFrameRate(fps),
310 fprintf(stderr, "encoding speed is: %.2f fps\n", (nFrames * 1E9) / (end-start));
H A Dstagefright.cpp113 double fps = 1E6 / slotUs; local
114 printf("[%.2f fps]: %d\n", fps, counts[i]);
377 printf("avg. %.2f fps\n", n * 1E6 / delay);
606 fprintf(stderr, " -x display a histogram of decoding times/fps "
/frameworks/av/media/libstagefright/
H A DSurfaceMediaSource.cpp114 status_t SurfaceMediaSource::setFrameRate(int32_t fps) argument
119 if (fps < 0 || fps > MAX_FRAME_RATE) {
122 mFrameRate = fps;
/frameworks/base/tests/RenderScriptTests/SurfaceTexture/src/com/example/android/rs/sto/
H A DCameraCapture.java190 private int[] findClosestFpsRange(int fps, Camera.Parameters params) { argument
193 int fpsk = fps * 1000;
/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/av/libvideoeditor/vss/common/inc/
H A DM4WRITER_common.h133 M4OSA_Double fps; /**< Targetted framerate of the video */ member in struct:__anon195
/frameworks/av/media/libstagefright/tests/
H A DSurfaceMediaSource_test.cpp392 int outputFormat, int videoEncoder, int width, int height, int fps);
469 int outputFormat, int videoEncoder, int width, int height, int fps) {
476 mr->setVideoFrameRate(fps);
468 setUpMediaRecorder(int fd, int videoSource, int outputFormat, int videoEncoder, int width, int height, int fps) argument
/frameworks/base/media/java/android/media/
H A DMediaRecorder.java354 * @param fps Rate at which frames should be captured in frames per second.
355 * The fps can go as low as desired. However the fastest fps will be limited by the hardware.
356 * For resolutions that can be captured by the video camera, the fastest fps can be computed using
358 * resolutions the fastest fps may be more restrictive.
363 public void setCaptureRate(double fps) { argument
367 double timeBetweenFrameCapture = 1 / 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";
392 void CameraParameters::setPreviewFrameRate(int fps) argument
394 set(KEY_PREVIEW_FRAME_RATE, fps);
/frameworks/av/services/camera/libcameraservice/camera2/
H A DParameters.cpp185 // from the [min, max] fps range use the max value
186 int fps = fpsFromRange(availableFpsRanges.data.i32[i], local
190 if (sortedPreviewFrameRates.indexOf(fps) == NAME_NOT_FOUND) {
191 sortedPreviewFrameRates.add(fps);
202 fps);
1088 // Deprecated, only use if the preview fps range is unchanged this time.
/frameworks/base/core/java/android/hardware/
H A DCamera.java1668 private static final String KEY_PREVIEW_FPS_RANGE = "preview-fps-range";
1971 * The array index of minimum preview fps for use with {@link
1978 * The array index of maximum preview fps for use with {@link
2306 * @param fps the frame rate (frames per second)
2310 public void setPreviewFrameRate(int fps) { argument
2311 set(KEY_PREVIEW_FRAME_RATE, fps);
2341 * Sets the maximum and maximum preview fps. This controls the rate of
2343 * maximum preview fps must be one of the elements from {@link
2346 * @param min the minimum preview fps (scaled by 1000).
2347 * @param max the maximum preview fps (scale
[all...]
/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) {

Completed in 8534 milliseconds