HomeSort by relevance Sort by last modified time
    Searched defs:videoFps (Results 1 - 7 of 7) sorted by null

  /frameworks/av/media/libmedia/
IMediaPlayer.cpp 275 status_t getSyncSettings(AVSyncSettings* sync /* nonnull */, float* videoFps /* nonnull */)
287 *videoFps = reply.readFloat();
772 float videoFps;
773 status_t err = getSyncSettings(&sync, &videoFps);
779 reply->writeFloat(videoFps);
    [all...]
  /frameworks/base/media/tests/MediaFrameworkTest/src/com/android/mediaframeworktest/functional/mediarecorder/
MediaRecorderTest.java 315 int videoFps = highQuality? videoCap.mMaxFrameRate: videoCap.mMinFrameRate;
323 MediaFrameworkTestRunner.mMinCameraFps > videoFps){
324 videoFps = MediaFrameworkTestRunner.mMinCameraFps;
327 if (videoFps < MIN_VIDEO_FPS) {
328 videoFps = MIN_VIDEO_FPS;
341 Log.v(TAG, "videoFPS : " + videoFps);
352 mMediaRecorder.setVideoFrameRate(videoFps);
  /external/webrtc/webrtc/examples/androidapp/src/org/appspot/apprtc/
PeerConnectionClient.java 137 public final int videoFps;
150 int videoWidth, int videoHeight, int videoFps, int videoStartBitrate,
159 this.videoFps = videoFps;
396 int videoFps = peerConnectionParameters.videoFps;
397 if (videoFps > 0) {
398 videoFps = Math.min(videoFps, MAX_VIDEO_FPS);
400 MIN_VIDEO_FPS_CONSTRAINT, Integer.toString(videoFps)));
    [all...]
  /frameworks/av/media/libmediaplayer2/nuplayer2/
NuPlayer2.cpp 531 AVSyncSettings *sync /* nonnull */, float *videoFps /* nonnull */) {
538 readFromAMessage(response, sync, videoFps);
    [all...]
NuPlayer2Renderer.cpp 268 status_t NuPlayer2::Renderer::getSyncSettings(AVSyncSettings *sync, float *videoFps) {
275 readFromAMessage(response, sync, videoFps);
282 AVSyncSettings *sync /* nonnull */, float *videoFps /* nonnull */) {
284 *videoFps = -1.f;
684 float videoFps = -1.f;
685 status_t err = onGetSyncSettings(&sync, &videoFps);
688 writeToAMessage(response, sync, videoFps);
    [all...]
  /frameworks/av/media/libmediaplayerservice/nuplayer/
NuPlayer.cpp 444 AVSyncSettings *sync /* nonnull */, float *videoFps /* nonnull */) {
451 readFromAMessage(response, sync, videoFps);
965 float videoFps = mVideoFpsHint;
968 err = mRenderer->getSyncSettings(&sync, &videoFps);
971 mVideoFpsHint = videoFps;
976 writeToAMessage(response, sync, videoFps);
    [all...]
NuPlayerRenderer.cpp 269 status_t NuPlayer::Renderer::getSyncSettings(AVSyncSettings *sync, float *videoFps) {
276 readFromAMessage(response, sync, videoFps);
283 AVSyncSettings *sync /* nonnull */, float *videoFps /* nonnull */) {
285 *videoFps = -1.f;
685 float videoFps = -1.f;
686 status_t err = onGetSyncSettings(&sync, &videoFps);
689 writeToAMessage(response, sync, videoFps);
    [all...]

Completed in 325 milliseconds