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

12

/frameworks/native/include/ui/
H A DDisplayInfo.h32 float fps; member in struct:android::DisplayInfo
/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/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/media/libstagefright/
H A DSurfaceMediaSource.cpp111 status_t SurfaceMediaSource::setFrameRate(int32_t fps) argument
116 if (fps < 0 || fps > MAX_FRAME_RATE) {
119 mFrameRate = fps;
/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/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/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);
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...]
/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/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/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/av/libvideoeditor/vss/common/inc/
H A DM4WRITER_common.h133 M4OSA_Double fps; /**< Targetted framerate of the video */ member in struct:__anon208
/frameworks/av/camera/
H A DCameraParameters2.cpp286 void CameraParameters2::setPreviewFrameRate(int fps)
288 set(CameraParameters::KEY_PREVIEW_FRAME_RATE, fps);
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);
/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.cpp449 mainDpyInfo.w, mainDpyInfo.h, mainDpyInfo.fps,
464 err = prepareEncoder(mainDpyInfo.fps, &encoder, &bufferProducer);
477 err = prepareEncoder(mainDpyInfo.fps, &encoder, &bufferProducer);
/frameworks/av/media/libstagefright/tests/
H A DSurfaceMediaSource_test.cpp394 int outputFormat, int videoEncoder, int width, int height, int fps);
471 int outputFormat, int videoEncoder, int width, int height, int fps) {
478 mr->setVideoFrameRate(fps);
470 setUpMediaRecorder(int fd, int videoSource, int outputFormat, int videoEncoder, int width, int height, int fps) argument
/frameworks/av/services/camera/libcameraservice/api1/client2/
H A DParameters.cpp199 // from the [min, max] fps range use the max value
200 int fps = fpsFromRange(availableFpsRanges.data.i32[i], local
204 if (sortedPreviewFrameRates.indexOf(fps) == NAME_NOT_FOUND) {
205 sortedPreviewFrameRates.add(fps);
216 fps);
1338 // Set fps single, then fps range (range wins)
1346 // Set fps range, then fps single (single wins)
/frameworks/base/core/jni/
H A Dandroid_view_SurfaceControl.cpp366 env->SetFloatField(infoObj, gPhysicalDisplayInfoClassInfo.refreshRate, info.fps);
/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/media/tests/MediaFrameworkTest/src/com/android/mediaframeworktest/performance/
H A DVideoEditorPerformance.java638 final int fps = 30;
/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 781 milliseconds

12