HomeSort by relevance Sort by last modified time
    Searched refs:fps (Results 176 - 200 of 432) sorted by null

1 2 3 4 5 6 78 91011>>

  /external/skqp/samplecode/
SampleShip.cpp 123 SkString outString("fps: ");
124 SkScalar fps = 1000.f/meanTime; variable
125 outString.appendScalar(fps);
  /external/vulkan-validation-layers/demos/smoke/
ShellXcb.cpp 262 const double fps = profile_present_count / (current_time - profile_start_time); local
265 << "(FPS: " << fps << ")";
  /external/webrtc/talk/app/webrtc/java/jni/
androidvideocapturer_jni.cc 190 int fps) {
193 width, height, fps);
androidmediaencoder_jni.cc 72 // Maximum supported HW video encoder fps.
130 int32_t InitEncodeOnCodecThread(int width, int height, int kbps, int fps,
457 int width, int height, int kbps, int fps, bool use_surface) {
465 " kbps. Fps: " << fps; local
469 if (fps == 0) {
470 fps = last_set_fps_;
476 last_set_fps_ = fps;
506 j_video_codec_enum, width, height, kbps, fps,
    [all...]
  /frameworks/av/cmds/stagefright/
recordvideo.cpp 62 DummySource(int width, int height, int nFrames, int fps, int colorFormat)
66 mFrameRate(fps),
334 fprintf(stderr, "encoding speed is: %.2f fps\n", (nFrames * 1E9) / (end-start));
  /frameworks/av/media/libmediaplayer2/nuplayer2/
NuPlayer2Renderer.h 70 void setVideoFrameRate(float fps);
265 void onSetVideoFrameRate(float fps);
  /frameworks/av/media/libmediaplayerservice/nuplayer/
NuPlayerRenderer.h 70 void setVideoFrameRate(float fps);
265 void onSetVideoFrameRate(float fps);
  /frameworks/av/media/libstagefright/omx/1.0/
WGraphicBufferSource.cpp 207 double fps, double captureFps) {
208 return toStatus(mBase->setTimeLapseConfig(fps, captureFps));
  /frameworks/av/media/libstagefright/omx/
BWGraphicBufferSource.cpp 146 double fps, double captureFps) {
148 fps, captureFps));
  /hardware/qcom/display/msm8996/sdm/libs/hwc/
hwc_display_external.cpp 246 uint32_t HWCDisplayExternal::RoundToStandardFPS(float fps) {
249 uint32_t frame_rate = (uint32_t)(fps * 1000);
253 // Most likely used for video, the fps for frames should be stable from video side.
  /prebuilts/misc/windows/sdl2/test/
testdraw2.c 274 double fps = ((double) frames * 1000) / (now - then); local
275 SDL_Log("%2.2f frames per second\n", fps);
testrendercopyex.c 200 double fps = ((double) frames * 1000) / (now - then); local
201 SDL_Log("%2.2f frames per second\n", fps);
testviewport.c 177 double fps = ((double) frames * 1000) / (now - then); local
178 SDL_Log("%2.2f frames per second\n", fps);
  /hardware/qcom/display/msm8909w_3100/sdm/libs/hwc2/
hwc_layers.cpp 584 float fps = 0; local
586 if (getMetaData(handle, GET_REFRESH_RATE, &fps) == 0) {
587 frame_rate = RoundToStandardFPS(fps);
728 uint32_t HWCLayer::RoundToStandardFPS(float fps) {
730 uint32_t frame_rate = (uint32_t)(fps);
735 // Most likely used for video, the fps can fluctuate
736 // Ex: b/w 29 and 30 for 30 fps clip
  /hardware/qcom/display/msm8996/sdm/libs/hwc2/
hwc_layers.cpp 493 uint32_t fps = 0; local
494 if (getMetaData(handle, GET_REFRESH_RATE, &fps) == 0) {
495 layer->frame_rate = RoundToStandardFPS(fps);
551 uint32_t HWCLayer::RoundToStandardFPS(float fps) {
553 uint32_t frame_rate = (uint32_t)(fps);
558 // Most likely used for video, the fps can fluctuate
559 // Ex: b/w 29 and 30 for 30 fps clip
  /hardware/qcom/display/msm8998/sdm/libs/hwc2/
hwc_layers.cpp 667 uint32_t fps = 0; local
669 if (getMetaData(handle, GET_REFRESH_RATE, &fps) == 0) {
670 frame_rate = RoundToStandardFPS(fps);
771 uint32_t HWCLayer::RoundToStandardFPS(float fps) {
773 uint32_t frame_rate = (uint32_t)(fps);
778 // Most likely used for video, the fps can fluctuate
779 // Ex: b/w 29 and 30 for 30 fps clip
  /external/webrtc/webrtc/modules/remote_bitrate_estimator/test/
bwe_test_framework.cc 674 float fps,
680 frame_period_ms_(1000.0 / fps),
682 frame_size_bytes_(bits_per_second_ / 8 / fps),
755 float fps,
759 : VideoSource(flow_id, fps, kbps, ssrc, first_frame_offset_ms) {
768 float fps,
773 : AdaptiveVideoSource(flow_id, fps, kbps, ssrc, first_frame_offset_ms),
bwe_test_framework.h 394 float fps,
433 float fps,
448 float fps,
  /hardware/intel/common/libva/test/encode/
mpeg2enc.c 102 int fps; member in struct:mpeg2enc_context
534 fprintf(stderr, "\t--fps <FPS> specify the frame rate\n");
551 ctx->fps <= mpeg2_upper_samplings[p][l].frame_per_sec) {
560 fprintf(stderr, "Warning: can't find a proper profile and level for the specified width/height/fps\n");
581 {"fps", required_argument, 0, 'f'},
628 ctx->fps = 30;
665 fprintf(stderr, "Warning: FPS must be greater than 0\n");
667 ctx->fps = tmp;
772 seq_param->frame_rate = ctx->fps;
962 int fps = (int)(seq_param->frame_rate + 0.5); local
    [all...]
mpeg2vaenc.c 102 int fps; member in struct:mpeg2enc_context
534 fprintf(stderr, "\t--fps <FPS> specify the frame rate\n");
551 ctx->fps <= mpeg2_upper_samplings[p][l].frame_per_sec) {
560 fprintf(stderr, "Warning: can't find a proper profile and level for the specified width/height/fps\n");
581 {"fps", required_argument, 0, 'f'},
628 ctx->fps = 30;
665 fprintf(stderr, "Warning: FPS must be greater than 0\n");
667 ctx->fps = tmp;
772 seq_param->frame_rate = ctx->fps;
962 int fps = (int)(seq_param->frame_rate + 0.5); local
    [all...]
  /cts/tests/tests/openglperf/src/android/openglperf/cts/
PlanetsRenderer.java 73 // for total FPS measurement
243 float fps = ((float) mParam.mNumFrames) / ((float) timePassed) * 1000.0f; local
247 Log.i(TAG, "Final FPS " + fps + " Num triangles " + numTriangles + " start time " +
250 mListener.onRenderCompletion(fps, numTriangles, mFrameInterval, mRendererName);
268 // reset timer to remove delays added for FPS calculation.
  /external/webrtc/talk/app/webrtc/java/src/org/webrtc/
MediaCodecVideoEncoder.java 273 boolean initEncode(VideoCodecType type, int width, int height, int kbps, int fps,
277 ". @ " + kbps + " kbps. Fps: " + fps + ". Encode from texture : " + useSurface);
316 format.setInteger(MediaFormat.KEY_FRAME_RATE, fps);
456 Logging.v(TAG, "setRates: " + kbps + " kbps. Fps: " + frameRateIgnored);
  /device/google/cuttlefish_common/guest/hals/gralloc/legacy/
framebuffer.cpp 149 const_cast<float&>(dev->device.fps) =
  /device/linaro/hikey/gralloc960/
gralloc_priv.h 105 float fps; member in struct:private_module_t
  /external/webrtc/webrtc/video/
video_loopback.cc 34 DEFINE_int32(fps, 30, "Frames per second.");
35 int Fps() {
211 {flags::Width(), flags::Height(), flags::Fps(),

Completed in 511 milliseconds

1 2 3 4 5 6 78 91011>>