/frameworks/base/media/tests/MediaFrameworkTest/src/com/android/mediaframeworktest/functional/videoeditor/ |
D | MediaPropertiesTest.java | 73 int videoCodecType, int duration, int videoBitrate, int fps, in validateVideoProperties() argument 91 mVideoEditorHelper.checkRange(fps, mvi.getFps(), 10)); in validateVideoProperties() 143 final int fps = 15; in testPropertiesMPEG4854_480() local 157 videoBitrate, fps, videoProfile, videoLevel, width, height, audioCodecType, in testPropertiesMPEG4854_480() 175 final int fps = 15; in testPropertiesMPEGWVGA() local 189 videoBitrate, fps, videoProfile, videoLevel, width, height, audioCodecType, in testPropertiesMPEGWVGA() 206 final int fps = 30; in testPropertiesMPEGNTSC() local 220 videoBitrate, fps, videoProfile, videoLevel, width, height, audioCodecType, in testPropertiesMPEGNTSC() 237 final int fps = 15; in testPropertiesMPEGVGA() local 251 videoBitrate, fps, videoProfile, videoLevel, width, height, audioCodecType, in testPropertiesMPEGVGA() [all …]
|
/frameworks/native/opengl/tests/testFramerate/src/com/android/testframerate/ |
D | TestFramerateView.java | 53 float fps = 1000000.f / elapsedTime_us; in registerTime() local 55 Log.v(TAG, "Long frame: " + elapsedTime_us/1000.f + " ms (" + fps + " fps)"); in registerTime()
|
/frameworks/av/media/libstagefright/ |
D | SurfaceMediaSource.cpp | 114 status_t SurfaceMediaSource::setFrameRate(int32_t fps) in setFrameRate() argument 119 if (fps < 0 || fps > MAX_FRAME_RATE) { in setFrameRate() 122 mFrameRate = fps; in setFrameRate()
|
/frameworks/base/media/mca/filterpacks/java/android/filterpacks/videosrc/ |
D | CameraSource.java | 323 private int[] findClosestFpsRange(int fps, Camera.Parameters params) { in findClosestFpsRange() argument 327 if (range[Camera.Parameters.PREVIEW_FPS_MIN_INDEX] < fps*1000 && in findClosestFpsRange() 328 range[Camera.Parameters.PREVIEW_FPS_MAX_INDEX] > fps*1000 && in findClosestFpsRange() 336 if (mLogVerbose) Log.v(TAG, "Requested fps: " + fps in findClosestFpsRange()
|
/frameworks/native/include/ui/ |
D | DisplayInfo.h | 32 float fps; member
|
/frameworks/base/tests/RenderScriptTests/PerfTest/src/com/android/perftest/ |
D | rsbench.rs | 199 float fps = (float)(frameCount) / ((float)(end - start)*0.001f); 201 rsDebug(testName, fps); 203 gResultBuffer[benchMode] = fps;
|
/frameworks/base/cmds/bootanimation/ |
D | BootAnimation.cpp | 417 int fps, width, height, count, pause; in movie() local 420 if (sscanf(l, "%d %d %d", &width, &height, &fps) == 3) { in movie() 424 animation.fps = fps; in movie() 492 nsecs_t frameDuration = s2ns(1) / animation.fps; in movie()
|
D | BootAnimation.h | 75 int fps; member
|
/frameworks/av/cmds/stagefright/ |
D | recordvideo.cpp | 54 DummySource(int width, int height, int nFrames, int fps, int colorFormat) in DummySource() argument 58 mFrameRate(fps), in DummySource()
|
D | stagefright.cpp | 113 double fps = 1E6 / slotUs; in displayDecodeHistogram() local 114 printf("[%.2f fps]: %d\n", fps, counts[i]); in displayDecodeHistogram()
|
/frameworks/av/include/media/stagefright/ |
D | SurfaceMediaSource.h | 84 status_t setFrameRate(int32_t fps) ;
|
/frameworks/base/media/java/android/media/ |
D | MediaRecorder.java | 356 public void setCaptureRate(double fps) { in setCaptureRate() argument 360 double timeBetweenFrameCapture = 1 / fps; in setCaptureRate()
|
/frameworks/av/libvideoeditor/vss/common/inc/ |
D | M4WRITER_common.h | 133 M4OSA_Double fps; /**< Targetted framerate of the video */ member
|
/frameworks/av/include/camera/ |
D | CameraParameters.h | 91 void setPreviewFrameRate(int fps);
|
/frameworks/av/camera/ |
D | CameraParameters.cpp | 397 void CameraParameters::setPreviewFrameRate(int fps) in setPreviewFrameRate() argument 399 set(KEY_PREVIEW_FRAME_RATE, fps); in setPreviewFrameRate()
|
/frameworks/av/media/libstagefright/tests/ |
D | SurfaceMediaSource_test.cpp | 392 int outputFormat, int videoEncoder, int width, int height, int fps); 469 int outputFormat, int videoEncoder, int width, int height, int fps) { in setUpMediaRecorder() argument 476 mr->setVideoFrameRate(fps); in setUpMediaRecorder()
|
/frameworks/base/docs/html/guide/appendix/ |
D | media-formats.jd | 303 <td>12 fps</td> 304 <td>30 fps</td> 305 <td>30 fps</td>
|
/frameworks/av/services/camera/libcameraservice/camera2/ |
D | Parameters.cpp | 195 int fps = fpsFromRange(availableFpsRanges.data.i32[i], in initialize() local 199 if (sortedPreviewFrameRates.indexOf(fps) == NAME_NOT_FOUND) { in initialize() 200 sortedPreviewFrameRates.add(fps); in initialize() 211 fps); in initialize()
|
/frameworks/base/core/java/android/hardware/ |
D | Camera.java | 2315 public void setPreviewFrameRate(int fps) { in setPreviewFrameRate() argument 2316 set(KEY_PREVIEW_FRAME_RATE, fps); in setPreviewFrameRate()
|
/frameworks/base/core/jni/ |
D | android_view_SurfaceControl.cpp | 381 env->SetFloatField(infoObj, gPhysicalDisplayInfoClassInfo.refreshRate, info.fps); in nativeGetDisplayInfo()
|
/frameworks/base/media/tests/MediaFrameworkTest/src/com/android/mediaframeworktest/performance/ |
D | VideoEditorPerformance.java | 638 final int fps = 30; in testPerformanceVideoItemProperties() local
|
/frameworks/base/media/java/android/media/videoeditor/ |
D | MediaArtistNativeHelper.java | 3316 int getFrameRate(int fps) { in getFrameRate() argument 3318 switch (fps) { in getFrameRate()
|
/frameworks/native/services/surfaceflinger/DisplayHardware/ |
D | HWComposer.cpp | 182 disp.refresh = nsecs_t(1e9 / mFbDev->fps); in HWComposer()
|
/frameworks/av/libvideoeditor/vss/src/ |
D | M4PTO3GPP_API.c | 1504 pC->m_pWriterVideoStreamInfo->fps = 0; /**< Not used by the core writer */ in M4PTO3GPP_Ready4Processing()
|
D | M4VSS3GPP_Edit.c | 2334 pC_ewc->WriterVideoStreamInfo.fps = in M4VSS3GPP_intCreate3GPPOutputFile()
|