HomeSort by relevance Sort by last modified time
    Searched refs:fps (Results 51 - 75 of 278) sorted by null

1 23 4 5 6 7 8 91011>>

  /external/chromium_org/native_client_sdk/src/gonacl_appengine/src/
Makefile 82 common/fps.h
129 common/fps.h
143 common/fps.h
173 common/fps.h
  /external/chromium_org/third_party/hwcplus/include/hardware/
fb.h 59 const float fps; member in struct:framebuffer_device_t
  /external/chromium_org/third_party/webrtc/modules/video_coding/codecs/test_framework/
benchmark.cc 84 double fps[nBitrates]; local
118 << ", " << frameRate[j] << " fps" << std::endl << "Bitrate [kbps]:";
120 << "," << frameRate[j] << " fps" << std::endl << "Bitrate [kbps]";
165 fps[k] = avgFps;
207 std::cout << std::endl << "Speed [fps]:";
208 _results << std::endl << "Speed [fps]";
211 std::cout << " " << static_cast<int>(fps[k] + 0.5);
212 _results << "," << static_cast<int>(fps[k] + 0.5);
  /external/libvpx/libvpx/
webmenc.h 81 const struct vpx_rational *fps,
  /frameworks/av/media/libmediaplayerservice/
VideoFrameScheduler.h 54 void reset(float fps = -1);
  /frameworks/base/cmds/bootanimation/
BootAnimation.h 78 int fps; member in struct:android::BootAnimation::Animation
  /hardware/intel/common/omx-components/videocodec/libvpx_internal/libvpx/
webmenc.h 81 const struct vpx_rational *fps,
  /hardware/libhardware/include/hardware/
fb.h 65 const float fps; member in struct:framebuffer_device_t
  /hardware/libhardware/modules/gralloc/
gralloc_priv.h 53 float fps; member in struct:private_module_t
  /hardware/qcom/display/msm8960/libexternal/
external.h 73 void getAttrForMode(int& width, int& height, int& fps);
  /hardware/qcom/display/msm8974/libexternal/
external.h 76 void getAttrForMode(int& width, int& height, int& fps);
  /hardware/qcom/display/msm8084/libgralloc/
framebuffer.cpp 265 float fps = (float)metadata.data.panel_frame_rate; local
268 //The reserved[3] field is used to store FPS by the driver.
269 float fps = info.reserved[3] & 0xFF; local
298 fps
317 module->fps = fps;
416 const_cast<float&>(dev->device.fps) = m->fps;
  /hardware/qcom/display/msm8226/libgralloc/
framebuffer.cpp 262 float fps = metadata.data.panel_frame_rate; local
265 //The reserved[3] field is used to store FPS by the driver.
266 float fps = info.reserved[3] & 0xFF; local
295 fps
314 module->fps = fps;
415 const_cast<float&>(dev->device.fps) = m->fps;
  /hardware/qcom/display/msm8960/libgralloc/
framebuffer.cpp 255 float fps = metadata.data.panel_frame_rate; local
258 //The reserved[3] field is used to store FPS by the driver.
259 float fps = info.reserved[3] & 0xFF; local
288 fps
303 module->fps = fps;
391 const_cast<float&>(dev->device.fps) = m->fps;
  /hardware/qcom/display/msm8974/libgralloc/
framebuffer.cpp 255 float fps = metadata.data.panel_frame_rate; local
258 //The reserved[3] field is used to store FPS by the driver.
259 float fps = info.reserved[3] & 0xFF; local
288 fps
303 module->fps = fps;
397 const_cast<float&>(dev->device.fps) = m->fps;
  /external/chromium_org/third_party/libvpx/source/libvpx/vp9/encoder/
vp9_firstpass.c 115 static int input_stats(struct twopass_rc *p, FIRSTPASS_STATS *fps) {
119 *fps = *p->stats_in;
801 FIRSTPASS_STATS fps; local
803 fps.frame = cm->current_video_frame;
804 fps.spatial_layer_id = cpi->svc.spatial_layer_id;
805 fps.intra_error = (double)(intra_error >> 8);
806 fps.coded_error = (double)(coded_error >> 8);
807 fps.sr_coded_error = (double)(sr_coded_error >> 8);
808 fps.ssim_weighted_pred_err = fps.coded_error * simple_weight(cpi->Source)
    [all...]
  /external/libvpx/libvpx/vp9/encoder/
vp9_firstpass.c 114 static int input_stats(struct twopass_rc *p, FIRSTPASS_STATS *fps) {
118 *fps = *p->stats_in;
791 FIRSTPASS_STATS fps; local
793 fps.frame = cm->current_video_frame;
794 fps.spatial_layer_id = cpi->svc.spatial_layer_id;
795 fps.intra_error = (double)(intra_error >> 8);
796 fps.coded_error = (double)(coded_error >> 8);
797 fps.sr_coded_error = (double)(sr_coded_error >> 8);
798 fps.ssim_weighted_pred_err = fps.coded_error * simple_weight(cpi->Source)
    [all...]
  /hardware/intel/common/omx-components/videocodec/libvpx_internal/libvpx/vp9/encoder/
vp9_firstpass.c 112 static int input_stats(struct twopass_rc *p, FIRSTPASS_STATS *fps) {
116 *fps = *p->stats_in;
790 FIRSTPASS_STATS fps; local
792 fps.frame = cm->current_video_frame;
793 fps.spatial_layer_id = cpi->svc.spatial_layer_id;
794 fps.intra_error = (double)(intra_error >> 8);
795 fps.coded_error = (double)(coded_error >> 8);
796 fps.sr_coded_error = (double)(sr_coded_error >> 8);
797 fps.ssim_weighted_pred_err = fps.coded_error * simple_weight(cpi->Source)
    [all...]
  /external/chromium_org/third_party/libvpx/source/libvpx/vp8/encoder/
firstpass.c 119 static int input_stats(VP8_COMP *cpi, FIRSTPASS_STATS *fps)
124 *fps = *cpi->twopass.stats_in;
799 FIRSTPASS_STATS fps; local
801 fps.frame = cm->current_video_frame ;
802 fps.intra_error = (double)(intra_error >> 8);
803 fps.coded_error = (double)(coded_error >> 8);
810 fps.ssim_weighted_pred_err = fps.coded_error * weight;
812 fps.pcnt_inter = 0.0;
813 fps.pcnt_motion = 0.0
    [all...]
  /external/libvpx/libvpx/vp8/encoder/
firstpass.c 119 static int input_stats(VP8_COMP *cpi, FIRSTPASS_STATS *fps)
124 *fps = *cpi->twopass.stats_in;
799 FIRSTPASS_STATS fps; local
801 fps.frame = cm->current_video_frame ;
802 fps.intra_error = (double)(intra_error >> 8);
803 fps.coded_error = (double)(coded_error >> 8);
810 fps.ssim_weighted_pred_err = fps.coded_error * weight;
812 fps.pcnt_inter = 0.0;
813 fps.pcnt_motion = 0.0
    [all...]
  /hardware/intel/common/omx-components/videocodec/libvpx_internal/libvpx/vp8/encoder/
firstpass.c 119 static int input_stats(VP8_COMP *cpi, FIRSTPASS_STATS *fps)
124 *fps = *cpi->twopass.stats_in;
799 FIRSTPASS_STATS fps; local
801 fps.frame = cm->current_video_frame ;
802 fps.intra_error = (double)(intra_error >> 8);
803 fps.coded_error = (double)(coded_error >> 8);
810 fps.ssim_weighted_pred_err = fps.coded_error * weight;
812 fps.pcnt_inter = 0.0;
813 fps.pcnt_motion = 0.0
    [all...]
  /device/moto/shamu/camera/QCamera/HAL/usbcamcore/src/
QCameraUsbParm.cpp 105 // All fps ranges which can be supported. This list will be filtered according
106 // to the min and max fps supported by hardware
108 // fps values are multiplied by 1000
151 static String8 create_fps_str(const android:: FPSRange* fps, int len);
250 //Set Preivew fps range
429 static String8 create_fps_str(const android:: FPSRange* fps, int len) {
434 snprintf(buffer, sizeof(buffer), "(%d,%d)", fps[0].minFPS, fps[0].maxFPS);
438 snprintf(buffer, sizeof(buffer), ",(%d,%d)", fps[i].minFPS, fps[i].maxFPS)
    [all...]
  /external/chromium_org/third_party/skia/experimental/SkV8Example/
gears.js 160 function fps() {
163 setTimeout(fps, 1000);
166 setTimeout(fps, 1000);
  /external/qemu/distrib/sdl-1.2.15/test/
testoverlay2.c 270 fprintf(stderr, " -fps <frames per second>\n");
292 int fps=12; local
305 if (strcmp(argv[1], "-fps")== 0)
309 fps = atoi(argv[2]);
310 if (fps==0)
312 fprintf(stderr, "The -fps option requires an argument [from 1 to 1000], default is 12.\n");
315 if ((fps<0) || (fps>1000))
317 fprintf(stderr, "The -fps option must be in range from 1 to 1000, default is 12.\n");
325 fprintf(stderr, "The -fps option requires an argument [from 1 to 1000], default is 12.\n")
    [all...]
  /external/skia/experimental/SkV8Example/
gears.js 160 function fps() {
163 setTimeout(fps, 1000);
166 setTimeout(fps, 1000);

Completed in 1609 milliseconds

1 23 4 5 6 7 8 91011>>