Home
last modified time | relevance | path

Searched refs:fps (Results 1 – 25 of 199) sorted by relevance

12345678

/external/iproute2/misc/
Dlnstat.c128 struct field_params *fps, int interval) in map_field_params() argument
134 if (!fps->num) { in map_field_params()
137 fps->params[j].lf = &lf->fields[i]; in map_field_params()
138 fps->params[j].lf->file->interval.tv_sec = in map_field_params()
140 if (!fps->params[j].print.width) in map_field_params()
141 fps->params[j].print.width = in map_field_params()
153 fps->num = j; in map_field_params()
157 for (i = 0; i < fps->num; i++) { in map_field_params()
158 fps->params[i].lf = lnstat_find_field(lnstat_files, in map_field_params()
159 fps->params[i].name); in map_field_params()
[all …]
/external/webrtc/rtc_base/experiments/
Dbalanced_degradation_settings.cc82 (config1.fps > 0) == (config2.fps > 0)); in IsValid()
87 if (config1.fps > 0 && config1.fps < config2.fps) { in IsValid()
100 if (config.fps < kMinFps || config.fps > kMaxFps) { in IsValid()
117 configs[i].fps < configs[i - 1].fps) { in IsValid()
192 absl::optional<int> fps; in GetFps() local
195 fps = config->vp8.GetFps(); in GetFps()
198 fps = config->vp9.GetFps(); in GetFps()
201 fps = config->h264.GetFps(); in GetFps()
204 fps = config->av1.GetFps(); in GetFps()
207 fps = config->generic.GetFps(); in GetFps()
[all …]
Dbalanced_degradation_settings.h30 CodecTypeSpecific(int qp_low, int qp_high, int fps, int kbps, int kbps_res) in CodecTypeSpecific()
33 fps(fps), in CodecTypeSpecific()
38 return qp_low == o.qp_low && qp_high == o.qp_high && fps == o.fps &&
51 int fps = 0; // If unset, defaults to |fps| in Config. member
59 int fps,
70 return pixels == o.pixels && fps == o.fps && kbps == o.kbps &&
98 int fps = 0; // Min framerate to be used. member
/external/webrtc/rtc_tools/
Dvideo_file_writer.cc28 int fps, in WriteVideoToFile() argument
39 video->height(), fps); in WriteVideoToFile()
75 int fps) { in WriteVideoToFile() argument
76 WriteVideoToFile(video, file_name, fps, in WriteVideoToFile()
82 int fps) { in WriteY4mVideoToFile() argument
83 WriteVideoToFile(video, file_name, fps, /*isY4m=*/true); in WriteY4mVideoToFile()
88 int fps) { in WriteYuvVideoToFile() argument
89 WriteVideoToFile(video, file_name, fps, /*isY4m=*/false); in WriteYuvVideoToFile()
Dvideo_file_writer.h24 int fps);
29 int fps);
34 int fps);
/external/linux-kselftest/tools/testing/selftests/powerpc/tm/
Dtm-signal-context-chk-fpu.c35 long tm_signal_self_context_load(pid_t pid, long *gprs, double *fps, vector int *vms, vector int *v…
38 static double fps[] = { variable
55 fail = (ucp->uc_mcontext.fp_regs[FPR14 + i] != fps[i]); in signal_usr1()
59 FPR14 + i, ucp->uc_mcontext.fp_regs[FPR14 + i], fps[i]); in signal_usr1()
65 fail = (tm_ucp->uc_mcontext.fp_regs[FPR14 + i] != fps[NV_FPU_REGS + i]); in signal_usr1()
69 FPR14 + i, tm_ucp->uc_mcontext.fp_regs[FPR14 + i], fps[NV_FPU_REGS + i]); in signal_usr1()
99 rc = tm_signal_self_context_load(pid, NULL, fps, NULL, NULL); in tm_signal_context_chk_fpu()
/external/libaom/libaom/av1/encoder/
Dfirstpass.c754 FIRSTPASS_STATS fps; in update_firstpass_stats() local
764 fps.weight = stats->intra_factor * stats->brightness_factor; in update_firstpass_stats()
765 fps.frame = frame_number; in update_firstpass_stats()
766 fps.coded_error = (double)(stats->coded_error >> 8) + min_err; in update_firstpass_stats()
767 fps.sr_coded_error = (double)(stats->sr_coded_error >> 8) + min_err; in update_firstpass_stats()
768 fps.tr_coded_error = (double)(stats->tr_coded_error >> 8) + min_err; in update_firstpass_stats()
769 fps.intra_error = (double)(stats->intra_error >> 8) + min_err; in update_firstpass_stats()
770 fps.frame_avg_wavelet_energy = (double)stats->frame_avg_wavelet_energy; in update_firstpass_stats()
771 fps.count = 1.0; in update_firstpass_stats()
772 fps.pcnt_inter = (double)stats->inter_count / num_mbs; in update_firstpass_stats()
[all …]
/external/webrtc/modules/video_coding/
Djitter_estimator.cc316 double fps = GetFrameRate(); in EstimateRandomJitter() local
317 if (fps > 0.0) { in EstimateRandomJitter()
318 double rate_scale = 30.0 / fps; in EstimateRandomJitter()
404 double fps = GetFrameRate(); in GetJitterEstimate() local
406 if (fps < kJitterScaleLowThreshold) { in GetJitterEstimate()
407 if (fps == 0.0) { in GetJitterEstimate()
415 if (fps < kJitterScaleHighThreshold) { in GetJitterEstimate()
418 (fps - kJitterScaleLowThreshold) * jitterMS; in GetJitterEstimate()
429 double fps = 1000000.0 / fps_counter_.ComputeMean(); in GetFrameRate() local
431 assert(fps >= 0.0); in GetFrameRate()
[all …]
/external/toybox/toys/posix/
Dpaste.c36 FILE **fps = (void *)toybuf; local
49 FILE *ff = seq ? *fps : fps[i];
58 fps[i] = 0;
113 FILE **fps = (void *)toybuf; in do_paste() local
115 if (!(fps[TT.files++] = (fd ? fdopen(fd, "r") : stdin))) perror_exit(0); in do_paste()
/external/skia/tools/
Dskottie2movie.cpp27 static DEFINE_int_2(fps, f, 25, "fps");
77 int fps = SkTPin(FLAGS_fps, 1, 240); in main() local
78 double fps_scale = animation->fps() / fps; in main()
86 const int frames = SkScalarRoundToInt(duration * fps); in main()
87 const double frame_duration = 1.0 / fps; in main()
91 dim.width(), dim.height(), duration, fps, frame_duration); in main()
104 if (!encoder.beginRecording(dim, fps)) { in main()
/external/webrtc/sdk/objc/components/capturer/
DRTCCameraVideoCapturer.h42 fps:(NSInteger)fps
50 fps:(NSInteger)fps;
DRTCCameraVideoCapturer.m145 fps:(NSInteger)fps {
146 [self startCaptureWithDevice:device format:format fps:fps completionHandler:nil];
155 fps:(NSInteger)fps
161 RTCLogInfo("startCaptureWithDevice %@ @ %ld fps", format, (long)fps);
187 [self updateDeviceCaptureFormat:format fps:fps];
486 - (void)updateDeviceCaptureFormat:(AVCaptureDeviceFormat *)format fps:(NSInteger)fps {
491 _currentDevice.activeVideoMinFrameDuration = CMTimeMake(1, fps);
/external/autotest/client/site_tests/platform_ScrollTest/
Dplatform_ScrollTest.py47 fps = fps_meter.FPSMeter(functools.partial(record_fps_info, fps_data))
63 fps.start()
65 fps.stop()
71 fps.start()
73 fps.stop()
/external/skia/modules/skottie/src/
DSkottieTool.cpp42 static DEFINE_double(fps, 0, "Decode frames per second (default is animation native fps).");
299 native_fps = anim->fps(), in main()
303 double fps = FLAGS_fps > 0 ? FLAGS_fps : native_fps; in main() local
304 if (fps <= 0) { in main()
305 SkDebugf("Invalid fps: %f.\n", fps); in main()
309 auto frame_count = static_cast<int>(duration * fps); in main()
313 fps = frame_count / duration; in main()
315 const auto fps_scale = native_fps / fps; in main()
317 SkDebugf("Rendering %f seconds (%d frames @%f fps).\n", duration, frame_count, fps); in main()
368 if (!enc.beginRecording({FLAGS_width, FLAGS_height}, fps)) { in main()
/external/skia/demos.skia.org/demos/path_performance/
Dmain.js36 const fps = fpsFromFramesInfo(framesCount, totalFramesMs); constant
44 textEl.innerText = `${fps.toFixed(2)} fps over ${framesCount} frames`;
49 const fps = fpsFromFramesInfo(svgAnimator.framesCount, svgAnimator.totalFramesMs); constant
51 `${fps.toFixed(2)} fps over ${svgAnimator.framesCount} frames`;
/external/webrtc/sdk/android/api/org/webrtc/
DVideoSource.java90 public void adaptOutputFormat(int width, int height, int fps) { in adaptOutputFormat() argument
93 adaptOutputFormat(maxSide, minSide, minSide, maxSide, fps); in adaptOutputFormat()
102 int landscapeWidth, int landscapeHeight, int portraitWidth, int portraitHeight, int fps) { in adaptOutputFormat() argument
106 /* maxPortraitPixelCount= */ portraitWidth * portraitHeight, fps); in adaptOutputFormat()
DSurfaceEglRenderer.java77 public void setFpsReduction(float fps) { in setFpsReduction() argument
79 isRenderingPaused = fps == 0f; in setFpsReduction()
81 super.setFpsReduction(fps); in setFpsReduction()
/external/autotest/server/site_tests/platform_RotationFps/
Dplatform_RotationFps.py62 fps = sum(fps_list)
63 logging.info('***RESULT*** Rotation FPS is %d (max 15)', fps)
67 value=fps,
/external/autotest/client/site_tests/power_VideoEncode/
Dpower_VideoEncode.py76 for codec, resolution, fps in format:
77 tagname = '%s_%s_%sfps' % (codec, resolution, fps)
78 js = 'changeFormat("%s", "%s", %d)' % (codec, resolution, fps)
/external/skia/tools/viewer/
DSkottieSlide.cpp182 fFrameTimes.resize(SkScalarCeilToInt(fAnimation->duration() * fAnimation->fps())); in load()
256 const auto frame_count = fAnimation->duration() * fAnimation->fps(); in animate()
261 fCurrentFrame = std::fmod(t_sec * fAnimation->fps(), frame_count); in animate()
264 fTimeBase = nanos - fCurrentFrame / fAnimation->fps() * 1e9; in animate()
270 const auto fps_scale = fFrameRate / fAnimation->fps(); in animate()
345 ImGui::SliderFloat("", &fCurrentFrame, 0, fAnimation->duration() * fAnimation->fps() - 1); in renderUI()
352 add_frame_rate_option("Native", fAnimation->fps()); in renderUI()
/external/autotest/client/site_tests/platform_MouseScrollTest/
Dplatform_MouseScrollTest.py59 fps = fps_meter.FPSMeter(functools.partial(record_fps_info, fps_data))
71 fps.start()
73 fps.stop()
/external/webrtc/call/adaptation/test/
Dfake_frame_rate_provider.cc23 void FakeFrameRateProvider::set_fps(int fps) { in set_fps() argument
24 EXPECT_CALL(*this, GetInputFrameRate()).WillRepeatedly(Return(fps)); in set_fps()
/external/libvpx/libvpx/
Drate_hist.c38 const vpx_rational_t *fps) { in init_rate_histogram() argument
42 if (hist == NULL || cfg == NULL || fps == NULL || fps->num == 0 || in init_rate_histogram()
43 fps->den == 0) { in init_rate_histogram()
51 hist->samples = cfg->rc_buf_sz * 5 / 4 * fps->num / fps->den / 1000; in init_rate_histogram()
/external/libvpx/libvpx/vp8/encoder/
Dfirstpass.c107 static int input_stats(VP8_COMP *cpi, FIRSTPASS_STATS *fps) { in input_stats() argument
110 *fps = *cpi->twopass.stats_in; in input_stats()
747 FIRSTPASS_STATS fps; in vp8_first_pass() local
749 fps.frame = cm->current_video_frame; in vp8_first_pass()
750 fps.intra_error = (double)(intra_error >> 8); in vp8_first_pass()
751 fps.coded_error = (double)(coded_error >> 8); in vp8_first_pass()
756 fps.ssim_weighted_pred_err = fps.coded_error * weight; in vp8_first_pass()
758 fps.pcnt_inter = 0.0; in vp8_first_pass()
759 fps.pcnt_motion = 0.0; in vp8_first_pass()
760 fps.MVr = 0.0; in vp8_first_pass()
[all …]
/external/webrtc/sdk/objc/api/peerconnection/
DRTCVideoSource.h33 - (void)adaptOutputFormatToWidth:(int)width height:(int)height fps:(int)fps;

12345678