/external/libxcam/modules/isp/ |
atomisp_device.cpp | 39 uint32_t fps_n = 0, fps_d = 0; local 43 this->get_framerate (fps_n, fps_d); 44 if (fps_n != 0 && fps_d != 0) { 51 frame_intvl.interval.numerator = fps_d;
|
/hardware/intel/common/libmix/mix_video/test/src/ |
test_framemanager.c | 50 gint fps_d = 1001; local 54 gint fps_d = 104297; 78 MIX_FRAMEORDER_MODE_DISPLAYORDER, fps_n, fps_d); 96 pts = idx * G_USEC_PER_SEC * G_GINT64_CONSTANT(1000) * fps_d / fps_n;
|
/external/libvpx/libvpx/ |
y4minput.h | 34 int fps_d; member in struct:y4m_input
|
y4minput.c | 84 if (sscanf(p + 1, "%d:%d", &_y4m->fps_n, &_y4m->fps_d) != 2) { [all...] |
vpxenc.c | [all...] |
/external/libxcam/xcore/ |
device_manager.cpp | 179 uint32_t fps_n = 0, fps_d = 0; local 194 _device->get_framerate (fps_n, fps_d); 195 if (fps_d) 196 framerate = (double)fps_n / (double)fps_d;
|
/external/libvpx/libvpx/test/ |
y4m_video_source.h | 45 framerate_denominator_ = y4m_.fps_d;
|
y4m_test.cc | 160 const struct VpxRational framerate = { y4m_.fps_n, y4m_.fps_d };
|
/external/libxcam/wrapper/gstreamer/ |
gstxcamfilter.cpp | 683 gint fps_n, fps_d; local 684 if (!gst_structure_get_fraction (src_struct, "framerate", &fps_n, &fps_d) && 685 !gst_structure_get_fraction (sink_struct, "framerate", &fps_n, &fps_d)) { 687 fps_d = 1; 692 "framerate", GST_TYPE_FRACTION, fps_n, fps_d, NULL); [all...] |
/hardware/intel/common/libmix/mix_video/src/ |
mixvideo.c | 448 guint fps_n, fps_d; local 522 &fps_d); 554 frame_order_mode, fps_n, fps_d, FALSE); 557 frame_order_mode, fps_n, fps_d, TRUE); [all...] |