Home
last modified time | relevance | path

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

123456

/ohos5.0/docs/zh-cn/application-dev/application-test/
H A Dsmartperf-guidelines.md422 order:1 fps=43
427 order:1 fps=40
446 order:1 fps=15
451 order:1 fps=12
592 order:47 fps=40
713 | fps | 每秒帧数 |单位:fps|
785fps:97|1726909714442fps:113|1726909715442fps:116|1726909716442fps:116|1726909717442fps:118|1726909…
885 fps:1|1501926684532
886 fps:18|1501926685532
931 - 采集当前界面fps
[all …]
/ohos5.0/foundation/graphic/graphic_2d/rosen/modules/render_service/core/pipeline/
H A Drs_realtime_refresh_rate_manager.cpp62 … uint32_t fps = std::round(realtimeFrameCount * static_cast<float>(NS_PER_S_) / diff.count()); in SetShowRefreshRateEnabled() local
63 fps = std::max(1u, fps); in SetShowRefreshRateEnabled()
64 if (fps <= IDLE_FPS_THRESHOLD_) { in SetShowRefreshRateEnabled()
65 fps = 1; in SetShowRefreshRateEnabled()
68 currRealtimeRefreshRate_ = fps; in SetShowRefreshRateEnabled()
H A Drs_uni_hwc_prevalidate_util.cpp97 …RSSurfaceRenderNode::SharedPtr node, GraphicTransformType transform, uint32_t fps, RequestLayerInf… in CreateSurfaceNodeLayerInfo() argument
110 info.fps = fps; in CreateSurfaceNodeLayerInfo()
128 zorder, info.usage, info.format, info.transform, fps); in CreateSurfaceNodeLayerInfo()
146 …RSDisplayRenderNode::SharedPtr node, const ScreenInfo &screenInfo, uint32_t fps, RequestLayerInfo … in CreateDisplayNodeLayerInfo() argument
167 info.fps = fps; in CreateDisplayNodeLayerInfo()
175 zorder, info.usage, info.format, info.transform, fps); in CreateDisplayNodeLayerInfo()
180 …RSSurfaceRenderNode::SharedPtr node, GraphicTransformType transform, uint32_t fps, RequestLayerInf… in CreateUIFirstLayerInfo() argument
193 info.fps = fps; in CreateUIFirstLayerInfo()
200 info.zOrder, info.usage, info.format, info.transform, fps); in CreateUIFirstLayerInfo()
222 info.fps = fps; in CreateRCDLayerInfo()
[all …]
H A Drs_uni_hwc_prevalidate_util.h53 uint32_t fps = 120; member
73 …RSSurfaceRenderNode::SharedPtr node, GraphicTransformType transform, uint32_t fps, RequestLayerInf…
75 …RSDisplayRenderNode::SharedPtr node, const ScreenInfo &screenInfo, uint32_t fps, RequestLayerInfo …
77 …RSRcdSurfaceRenderNode::SharedPtr node, const ScreenInfo &screenInfo, uint32_t fps, RequestLayerIn…
79 …RSSurfaceRenderNode::SharedPtr node, GraphicTransformType transform, uint32_t fps, RequestLayerInf…
/ohos5.0/foundation/distributedhardware/distributed_screen/services/common/test/unittest/utils/
H A Dvideo_param_test.cpp114 double fps = 1.0; variable
115 videoParam_->SetFps(fps);
117 EXPECT_EQ(fps, actual);
157 double fps = 30.0; variable
166 videoParam.SetFps(fps);
189 double fps = 30.0; variable
198 videoParam.SetFps(fps);
220 double fps = 30.0; variable
234 j[KEY_FPS] = fps;
/ohos5.0/foundation/resourceschedule/qos_manager/common/src/
H A Dconfig_reader.cpp232 int ConfigReader::GetDegratationFps(int fps) in GetDegratationFps() argument
234 if (degradationFpsMap_.find(fps) == degradationFpsMap_.end()) { in GetDegratationFps()
235 return fps; in GetDegratationFps()
237 return degradationFpsMap_[fps]; in GetDegratationFps()
240 bool ConfigReader::IsValidFps(const std::string& fps) in IsValidFps() argument
242 if (fps == "120" || fps == "90" || fps == "60") { in IsValidFps()
/ohos5.0/docs/en/application-dev/application-test/
H A Dsmartperf-guidelines.md422 order:1 fps=43
427 order:1 fps=40
446 order:1 fps=15
451 order:1 fps=12
592 order:47 fps=40
785fps:97|1726909714442fps:113|1726909715442fps:116|1726909716442fps:116|1726909717442fps:118|1726909…
885 fps:1|1501926684532
886 fps:18|1501926685532
887 fps:37|1501926686532
888 fps:41|1501926687532
[all …]
/ohos5.0/foundation/graphic/graphic_2d/rosen/modules/frame_analyzer/src/
H A Dframe_painter.cpp70 void FramePainter::DrawFPSLine(Drawing::Canvas &canvas, uint32_t fps, double thickness, uint32_t co… in DrawFPSLine() argument
72 if (fps == 0) { in DrawFPSLine()
81 auto bottom = OneSecondInMs / fps * heightPerMs; in DrawFPSLine()
93 uint32_t width, uint32_t height, uint32_t fps) in GenerateTimeBars() argument
106 if (fps != 0) { in GenerateTimeBars()
107 isHeavy = SumTimesInMs(*rit) >= (OneSecondInMs / fps); in GenerateTimeBars()
/ohos5.0/drivers/peripheral/camera/vdi_base/common/adapter/platform/v4l2/src/driver_adapter/src/
H A Dv4l2_stream.cpp75 format.fmtdesc.fps.numerator = Stream_Parm.parm.capture.timeperframe.numerator; in V4L2StreamFPSGet()
76 format.fmtdesc.fps.denominator = Stream_Parm.parm.capture.timeperframe.denominator; in V4L2StreamFPSGet()
88 Stream_Parm.parm.capture.timeperframe.denominator = format.fmtdesc.fps.denominator; in V4L2StreamFPSSet()
89 Stream_Parm.parm.capture.timeperframe.numerator = format.fmtdesc.fps.numerator; in V4L2StreamFPSSet()
/ohos5.0/foundation/graphic/graphic_2d/rosen/test/render_service/render_service/unittest/pipeline/
H A Drs_uni_hwc_prevalidate_util_test.cpp52 ASSERT_EQ(info.fps, DEFAULT_FPS);
73 ASSERT_EQ(info.fps, DEFAULT_FPS);
110 ASSERT_EQ(info.fps, DEFAULT_FPS);
129 ASSERT_EQ(info.fps, DEFAULT_FPS);
/ohos5.0/drivers/hdf_core/framework/model/camera/utils/src/
H A Dcamera_utils.c419 int32_t fps; in CheckFrameRate() local
432 … if (ctrlConfig->pixelFormat.fps.numerator == 0 || ctrlConfig->pixelFormat.fps.denominator == 0) { in CheckFrameRate()
434 ctrlConfig->pixelFormat.fps.numerator, ctrlConfig->pixelFormat.fps.denominator); in CheckFrameRate()
437 if (FPS_CALC_COEFF > UINT_MAX_VAL / ctrlConfig->pixelFormat.fps.denominator) { in CheckFrameRate()
441fps = FPS_CALC_COEFF * (ctrlConfig->pixelFormat.fps.denominator) / ctrlConfig->pixelFormat.fps.num… in CheckFrameRate()
445 …if (fps > FPS_CALC_COEFF * (rootConfig->deviceConfig[camId].stream.stream[deviceNum].frameRateMaxN… in CheckFrameRate()
446 HDF_LOGE("%s: stream%{public}d wrong fps = %{public}d", __func__, deviceNum, fps); in CheckFrameRate()
/ohos5.0/docs/zh-cn/device-dev/quick-start/
H A Dquickstart-appendix-rk3568.md23 …口 | -&nbsp;1×HDMI2.0(Type-A)接口,支持4K/60fps输出<br/>-&nbsp;2×MIPI接口,支1920\*1080\@60fps输出<br/>-&nbsp;1×…
/ohos5.0/docs/zh-cn/application-dev/reference/apis-camera-kit/
H A D_camera___video_profile.md22 | [Camera_FrameRateRange](_camera___frame_rate_range.md) [range](#range) | 帧速率,单位为fps(每秒帧数)。 |
43 帧速率,单位为fps(每秒帧数)。
/ohos5.0/docs/zh-cn/application-dev/dfx/
H A Dhidumper.md228 composer fps |dump the fps info of composer
254 composer fps |dump the fps info of composer
255 [surface name] fps |dump the fps info of surface
256 composer fpsClear |clear the fps info of composer
257 [windowname] fps |dump the fps info of window
259 [surface name] fpsClear |clear the fps info of surface
279 hidumper -s RenderService -a "surface_name fps"
285 $ hidumper -s RenderService -a "surface_name fps"
292 -- The recently fps records info of screens:
/ohos5.0/foundation/graphic/graphic_2d/rosen/modules/frame_analyzer/export/
H A Dframe_painter.h45 void DrawFPSLine(Drawing::Canvas &canvas, uint32_t fps, double thickness, uint32_t color);
46 std::vector<struct TimeBar> GenerateTimeBars(uint32_t width, uint32_t height, uint32_t fps);
/ohos5.0/foundation/resourceschedule/qos_manager/common/include/
H A Dconfig_reader.h33 int GetDegratationFps(int fps);
36 bool IsValidFps(const std::string& fps);
/ohos5.0/docs/en/device-dev/quick-start/
H A Dquickstart-appendix-rk3568.md23 …-A) port, supporting 4K/60 fps output<br>- 2 x MIPI, supporting 1920 x 1080\@60 fps output<br>- 1 …
/ohos5.0/drivers/peripheral/camera/vdi_base/common/adapter/platform/hdf_driver/src/driver_adapter/src/
H A Dcamera_fileformat.cpp42 currentFormat.fmtdesc.fps.numerator = fraMival.numerator; in CameraGetCurrentFormat()
43 currentFormat.fmtdesc.fps.denominator = fraMival.denominator; in CameraGetCurrentFormat()
281 isFailed |= !HdfSbufWriteUint32(reqData, ctrl.fmtdesc.fps.denominator); in CameraSetFPS()
282 isFailed |= !HdfSbufWriteUint32(reqData, ctrl.fmtdesc.fps.numerator); in CameraSetFPS()
315 isFailed |= !HdfSbufReadUint32(respData, &(ctrl.fmtdesc.fps.numerator)); in CameraGetFPS()
316 isFailed |= !HdfSbufReadUint32(respData, &(ctrl.fmtdesc.fps.denominator)); in CameraGetFPS()
/ohos5.0/foundation/multimedia/camera_framework/services/deferred_processing_service/src/media_manager/
H A Dreader.cpp195 mediaInfo->codecInfo.fps = FixFPS(doubleVal); in GetTrackMediaInfo()
203 …static_cast<long long>(mediaInfo->codecInfo.bitRate), mediaInfo->codecInfo.fps, mediaInfo->codecIn… in GetTrackMediaInfo()
208 inline int32_t Reader::FixFPS(const double fps) in FixFPS() argument
210 return fps < static_cast<double>(FPS_30) * FACTOR ? FPS_30 : FPS_60; in FixFPS()
/ohos5.0/foundation/multimedia/camera_framework/frameworks/native/camera/src/output/
H A Dcamera_output_capability.cpp49 Profile::Profile(CameraFormat format, Size size, Fps fps, std::vector<uint32_t> abilityId) in Profile() argument
50 : format_(format), size_(size), fps_(fps), abilityId_(abilityId), specId_(0) {} in Profile()
51 Profile::Profile(CameraFormat format, Size size, Fps fps, std::vector<uint32_t> abilityId, int32_t … in Profile() argument
52 : format_(format), size_(size), fps_(fps), abilityId_(abilityId), specId_(specId) {} in Profile()
/ohos5.0/docs/en/application-dev/dfx/
H A Dhidumper.md228 composer fps |dump the fps info of composer
254 composer fps |dump the fps info of composer
255 [surface name] fps |dump the fps info of surface
256 composer fpsClear |clear the fps info of composer
257 [windowname] fps |dump the fps info of window
259 [surface name] fpsClear |clear the fps info of surface
279 hidumper -s RenderService -a "surface_name fps"
285 $ hidumper -s RenderService -a "surface_name fps"
292 -- The recently fps records info of screens:
/ohos5.0/docs/zh-cn/device-dev/subsystems/
H A Dsubsys-multimedia-video-record-guide.md22 | Recorder | int32_t&nbsp;SetCaptureRate(int32_t&nbsp;sourceId,&nbsp;double&nbsp;fps) | 设置视频帧的捕获帧率 …
70 double fps = 30;
82 recorder->SetCaptureRate(sourceId, fps); // 设置视频帧的捕获帧率
/ohos5.0/foundation/distributedhardware/distributed_screen/services/common/utils/src/
H A Dvideo_param.cpp74 void VideoParam::SetFps(double fps) in SetFps() argument
76 fps_ = fps; in SetFps()
/ohos5.0/docs/zh-cn/application-dev/media/avcodec/
H A Dvideo-encoding-configuration-typical-scenarios.md73 // 2.2 填充使能参数键值对(以1080p@15fps SDR输入源为例)
165 // 2.2 填充使能参数键值对(以1080p@15fps SDR输入源为例)
206 // 2. 填充使能参数键值对(以1080p@15fps SDR输入源为例)
/ohos5.0/foundation/graphic/graphic_2d/rosen/test/hyper_graphic_manager/unittest/
H A Dhgm_multi_app_strategy_test.cpp51 int32_t fps; member
85 pkgParams_.push_back({ .pkgName = pkgName0, .fps = fps0, .pid = pid0, in SetUp()
91 pkgParams_.push_back({ .pkgName = pkgName1, .fps = fps1, .pid = pid1, in SetUp()
452 ASSERT_EQ(strategyConfig.min, pkgParam.fps);
453 ASSERT_EQ(strategyConfig.max, pkgParam.fps);

123456