| /third_party/ffmpeg/libavcodec/ |
| H A D | eacmv.c | 133 int pal_start, pal_count, i, ret, fps; in cmv_process_header() local 153 fps = AV_RL16(&buf[10]); in cmv_process_header() 154 if (fps > 0) in cmv_process_header() 155 s->avctx->framerate = (AVRational){ fps, 1 }; in cmv_process_header()
|
| /third_party/skia/experimental/ffmpeg/ |
| H A D | SkVideoEncoder.cpp | 145 bool SkVideoEncoder::init(int fps) { in init() argument 177 fStream->time_base = (AVRational){ 1, fps }; in init() 228 bool SkVideoEncoder::beginRecording(SkISize dim, int fps) { in beginRecording() argument 236 if (!this->init(fps)) { in beginRecording()
|
| /third_party/ffmpeg/libavformat/ |
| H A D | avs.c | 39 int fps; member 76 avs->fps = avio_rl16(s->pb); in avs_read_header() 206 avs->st_video->avg_frame_rate = (AVRational){avs->fps, 1}; in avs_read_packet()
|
| H A D | 4xm.c | 83 AVRational fps; member 110 avpriv_set_pts_info(st, 60, fourxm->fps.den, fourxm->fps.num); in parse_vtrk() 224 fourxm->fps = (AVRational){1,1}; in fourxm_read_header() 261 fourxm->fps = av_d2q(av_int2float(AV_RL32(&header[i + 12])), 10000); in fourxm_read_header()
|
| H A D | avisynth.c | 975 AVRational fps, samplerate; in avisynth_read_packet_audio() local 983 fps.num = avs->vi->fps_numerator; in avisynth_read_packet_audio() 984 fps.den = avs->vi->fps_denominator; in avisynth_read_packet_audio() 990 samples = av_rescale_q(avs->curr_frame, samplerate, fps) - in avisynth_read_packet_audio() 993 samples = av_rescale_q(1, samplerate, fps); in avisynth_read_packet_audio() 1100 AVRational fps, samplerate; in avisynth_read_seek() local 1105 fps = (AVRational) { avs->vi->fps_numerator, in avisynth_read_seek() 1118 avs->curr_sample = av_rescale_q(timestamp, samplerate, fps); in avisynth_read_seek() 1124 avs->curr_frame = av_rescale_q(timestamp, fps, samplerate); in avisynth_read_seek() 1125 avs->curr_sample = av_rescale_q(avs->curr_frame, samplerate, fps); in avisynth_read_seek() [all...] |
| H A D | rpl.c | 91 /** Parsing for fps, which can be a fraction. Unfortunately, 129 AVRational fps; in rpl_read_header() local 185 fps = read_fps(line, &error); in rpl_read_header() 187 avpriv_set_pts_info(vst, 32, fps.den, fps.num); in rpl_read_header()
|
| H A D | electronicarts.c | 347 int fps; in process_video_header_cmv() local 350 fps = avio_rl16(s->pb); in process_video_header_cmv() 351 if (fps) in process_video_header_cmv() 352 video->time_base = (AVRational) { 1, fps }; in process_video_header_cmv()
|
| /foundation/distributedhardware/distributed_screen/services/common/utils/src/ |
| H A D | video_param.cpp | 75 void VideoParam::SetFps(double fps) in SetFps() argument 77 fps_ = fps; in SetFps()
|
| /third_party/mesa3d/src/gallium/drivers/freedreno/ |
| H A D | freedreno_query_sw.c | 151 double fps = in fd_sw_get_query_result() local 153 result->u64 = (uint64_t)fps; in fd_sw_get_query_result()
|
| /third_party/skia/modules/skottie/include/ |
| H A D | Skottie.h | 229 * i.e. relative to duration() * fps(). 252 double fps() const { return fFPS; } in fps() function in skottie::Animation 275 double inPoint, double outPoint, double duration, double fps, uint32_t flags);
|
| /third_party/skia/modules/skottie/src/layers/ |
| H A D | PrecompLayer.cpp | 142 AnimatorAdapter(sk_sp<SGAdapter> sg_adapter, float fps) in attachExternalPrecompLayer() argument 144 , fFps(fps) {} in attachExternalPrecompLayer()
|
| /foundation/multimedia/media_utils_lite/hals/ |
| H A D | hal_media.h | 37 uint32_t fps;
member
|
| /foundation/graphic/graphic_2d/rosen/test/hyper_graphic_manager/unittest/ |
| H A D | hgm_multi_app_strategy_test.cpp | 51 int32_t fps; member 86 pkgParams_.push_back({ .pkgName = pkgName0, .fps = fps0, .pid = pid0, in SetUp() 92 pkgParams_.push_back({ .pkgName = pkgName1, .fps = fps1, .pid = pid1, in SetUp() 457 ASSERT_EQ(strategyConfig.min, pkgParam.fps); in HWTEST_F() 458 ASSERT_EQ(strategyConfig.max, pkgParam.fps); in HWTEST_F()
|
| /vendor/hisilicon/hispark_pegasus/demo/oledplayer_demo/oled/examples/ |
| H A D | ssd1306_tests.c | 87 int fps = 0; in ssd1306_TestFPS() local 102 fps++; in ssd1306_TestFPS() 109 fps = (float)fps / ((end - start) / ONE_THOUSAND_POINT_ZERO); in ssd1306_TestFPS() 110 if (snprintf_s(buff, sizeof(buff), "~%d FPS", fps) == TRUE) { in ssd1306_TestFPS()
|
| /vendor/hisilicon/hispark_pegasus/demo/ssd1306_demo/examples/ |
| H A D | ssd1306_tests.c | 87 int fps = 0; in ssd1306_TestFPS() local 102 fps++; in ssd1306_TestFPS() 109 fps = (float)fps / ((end - start) / ONE_THOUSAND_POINT_ZERO); in ssd1306_TestFPS() 110 if (snprintf_s(buff, sizeof(buff), "~%d FPS", fps) == TRUE) { in ssd1306_TestFPS()
|
| /third_party/skia/modules/canvaskit/ |
| H A D | skottie_bindings.cpp | 191 double fps() const { return fAnimation->fps(); } in fps() function in __anon18519::final 298 .function("fps" , &skottie::Animation::fps) in EMSCRIPTEN_BINDINGS() 326 .function("fps" , &ManagedAnimation::fps) in EMSCRIPTEN_BINDINGS()
|
| /third_party/skia/experimental/skottiekit/ |
| H A D | skottiekit_bindings.cpp | 140 double fps() const { return fAnimation->fps(); } in fps() function in __anon18335::final 361 .function("fps" , &skottie::Animation::fps) in EMSCRIPTEN_BINDINGS() 387 .function("fps" , &ManagedAnimation::fps) in EMSCRIPTEN_BINDINGS()
|
| /foundation/multimedia/camera_framework/interfaces/inner_api/native/camera/include/output/ |
| H A D | camera_output_capability.h | 76 Profile(CameraFormat format, Size size, Fps fps, std::vector<uint32_t> abilityId); 77 Profile(CameraFormat format, Size size, Fps fps, std::vector<uint32_t> abilityId, int32_t specId);
|
| /foundation/multimedia/player_framework/services/services/recorder/ipc/ |
| H A D | i_standard_recorder_service.h | 41 virtual int32_t SetCaptureRate(int32_t sourceId, double fps) in SetCaptureRate() argument 44 (void)fps; in SetCaptureRate()
|
| /foundation/multimedia/media_lite/frameworks/recorder_lite/ |
| H A D | recorder.cpp | 72 int32_t Recorder::SetCaptureRate(int32_t sourceId, double fps) in SetCaptureRate() argument 78 return client_->SetCaptureRate(sourceId, fps); in SetCaptureRate()
|
| /foundation/multimedia/media_lite/frameworks/recorder_lite/passthrough/ |
| H A D | recorder_client.cpp | 78 int32_t Recorder::RecorderClient::SetCaptureRate(int32_t sourceId, double fps) in SetCaptureRate() argument 84 return impl_->SetCaptureRate(sourceId, fps); in SetCaptureRate()
|
| /foundation/multimedia/camera_framework/services/deferred_processing_service/include/media_manager/ |
| H A D | reader.h | 47 static int32_t FixFPS(const double fps);
|
| H A D | media_format.h | 83 int32_t fps; member
|
| /foundation/distributedhardware/distributed_screen/services/common/utils/include/ |
| H A D | video_param.h | 37 void SetFps(double fps);
|
| /third_party/mesa3d/include/android_stub/hardware/ |
| H A D | fb.h | 65 const float fps; member
|