Searched refs:fps (Results 1 - 25 of 53) sorted by relevance

123

/frameworks/av/media/libmedia/aidl/android/
H A DIGraphicBufferSource.aidl31 void setTimeLapseConfig(double fps, double captureFps);
/frameworks/native/include/ui/
H A DDisplayInfo.h32 float fps{0};
/frameworks/av/media/libmedia/omx/1.0/
H A DWGraphicBufferSource.cpp56 double fps, double captureFps) {
57 return toBinderStatus(mBase->setTimeLapseConfig(fps, captureFps));
55 setTimeLapseConfig( double fps, double captureFps) argument
/frameworks/native/opengl/tests/testFramerate/src/com/android/testframerate/
H A DTestFramerateView.java53 float fps = 1000000.f / elapsedTime_us;
55 Log.v(TAG, "Long frame: " + elapsedTime_us/1000.f + " ms (" + fps + " fps)");
/frameworks/av/include/media/stagefright/
H A DVideoFrameScheduler.h57 void reset(float fps = -1);
H A DSurfaceMediaSource.h86 // Get / Set the frame rate used for encoding. Default fps = 30
87 status_t setFrameRate(int32_t fps) ;
208 // Set to a default of 30 fps if not specified by the client side
/frameworks/av/media/libstagefright/foundation/include/
H A DVideoFrameScheduler.h57 void reset(float fps = -1);
H A DSurfaceMediaSource.h86 // Get / Set the frame rate used for encoding. Default fps = 30
87 status_t setFrameRate(int32_t fps) ;
208 // Set to a default of 30 fps if not specified by the client side
/frameworks/av/media/libstagefright/include/
H A DVideoFrameScheduler.h57 void reset(float fps = -1);
H A DSurfaceMediaSource.h86 // Get / Set the frame rate used for encoding. Default fps = 30
87 status_t setFrameRate(int32_t fps) ;
208 // Set to a default of 30 fps if not specified by the client side
/frameworks/av/media/libstagefright/omx/
H A DBWGraphicBufferSource.h53 double fps, double captureFps) override;
H A DBWGraphicBufferSource.cpp148 double fps, double captureFps) {
150 fps, captureFps));
147 setTimeLapseConfig( double fps, double captureFps) argument
/frameworks/base/media/mca/filterpacks/java/android/filterpacks/videosrc/
H A DCameraSource.java316 private int[] findClosestFpsRange(int fps, Camera.Parameters params) { argument
320 if (range[Camera.Parameters.PREVIEW_FPS_MIN_INDEX] < fps*1000 &&
321 range[Camera.Parameters.PREVIEW_FPS_MAX_INDEX] > fps*1000 &&
329 if (mLogVerbose) Log.v(TAG, "Requested fps: " + fps
/frameworks/av/media/libstagefright/wifi-display/
H A DVideoFormats.cpp184 size_t width, height, fps, score; local
187 &fps, &interlaced)) {
191 score = width * height * fps * (!interlaced + 1);
195 &width, &height, &fps, &interlaced)
196 && score >= width * height * fps * (!interlaced + 1)) {
/frameworks/av/camera/include/camera/
H A DCameraParameters2.h98 void setPreviewFrameRate(int fps);
H A DCameraParameters.h91 void setPreviewFrameRate(int fps);
124 // The current minimum and maximum preview fps. This controls the rate of
126 // maximum fps must be one of the elements from
130 // The supported preview fps (frame-per-second) ranges. Each range contains
131 // a minimum fps and maximum fps. If minimum fps equals to maximum fps, the
135 // sorted from small to large (first by maximum fps and then minimum fps)
[all...]
/frameworks/av/include/camera/
H A DCameraParameters2.h98 void setPreviewFrameRate(int fps);
H A DCameraParameters.h91 void setPreviewFrameRate(int fps);
124 // The current minimum and maximum preview fps. This controls the rate of
126 // maximum fps must be one of the elements from
130 // The supported preview fps (frame-per-second) ranges. Each range contains
131 // a minimum fps and maximum fps. If minimum fps equals to maximum fps, the
135 // sorted from small to large (first by maximum fps and then minimum fps)
[all...]
/frameworks/av/include/media/omx/1.0/
H A DWGraphicBufferSource.h74 BnStatus setTimeLapseConfig(double fps, double captureFps) override;
/frameworks/av/media/libstagefright/
H A DSurfaceMediaSource.cpp117 status_t SurfaceMediaSource::setFrameRate(int32_t fps) argument
122 if (fps < 0 || fps > MAX_FRAME_RATE) {
125 mFrameRate = fps;
H A DVideoFrameScheduler.cpp74 void VideoFrameScheduler::PLL::reset(float fps) { argument
81 if (fps <= 0.f) {
85 ALOGV("reset at %.1f fps", fps);
86 mPeriod = (nsecs_t)(1e9 / fps + 0.5);
/frameworks/av/media/libstagefright/omx/1.0/
H A DWGraphicBufferSource.h81 Return<Status> setTimeLapseConfig(double fps, double captureFps) override;
H A DWGraphicBufferSource.cpp195 double fps, double captureFps) {
196 return toStatus(mBase->setTimeLapseConfig(fps, captureFps));
194 setTimeLapseConfig( double fps, double captureFps) argument
/frameworks/av/cmds/stagefright/
H A Drecordvideo.cpp62 DummySource(int width, int height, int nFrames, int fps, int colorFormat) argument
66 mFrameRate(fps),
334 fprintf(stderr, "encoding speed is: %.2f fps\n", (nFrames * 1E9) / (end-start));
/frameworks/av/media/libmediaplayerservice/nuplayer/
H A DNuPlayerRenderer.h69 void setVideoFrameRate(float fps);
263 void onSetVideoFrameRate(float fps);

Completed in 351 milliseconds

123