HomeSort by relevance Sort by last modified time
    Searched defs:frameRate (Results 1 - 25 of 113) sorted by null

1 2 3 4 5

  /hardware/intel/common/utils/media_resource_manager/include/
OMX_adaptor.h 39 uint frameRate;
MediaResourceArbitrator.h 72 uint frameRate;
125 /* in */ uint frameRate);
132 uint frameRate);
  /hardware/intel/common/utils/media_resource_manager/omx_adaptor/
OMX_adaptor.h 39 uint frameRate;
OMX_adaptor.cpp 139 uint frameRate = (uint)(video_def->xFramerate/65536);
140 ALOGV("frame rate from inport = %d", frameRate);
141 mComponentFramerateMap.add(hComponent, frameRate);
182 unsigned int frameRate = 0;
184 frameRate = mComponentFramerateMap.valueFor(hComponent);
189 ALOGV("frame rate from inport def = %d", frameRate);
190 if ((frameRate > 55) && (frameRate < 65)) {
191 frameRate = 60;
195 frameRate = 30
    [all...]
  /frameworks/base/media/jni/
android_media_SyncParams.h 28 float frameRate;
  /external/webrtc/webrtc/modules/video_coding/
video_sender.cc 63 uint32_t frameRate = _mediaOpt.SentFrameRate();
64 _sendStatsCallback->SendStatistics(bitRate, frameRate);
172 int VideoSender::FrameRate(unsigned int* framerate) const {
180 *framerate = _encoder->GetEncoderParameters().input_frame_rate;
video_receiver.cc 74 uint32_t frameRate;
75 _receiver.ReceiveStatistics(&bitRate, &frameRate);
76 _receiveStatsCallback->OnReceiveRatesUpdated(bitRate, frameRate);
media_opt_util.h 54 frameRate(0.0f),
67 float frameRate;
277 // - frameRate : The current target frame rate.
278 void UpdateFrameRate(float frameRate) { _frameRate = frameRate; }
media_opt_util.cc 118 parameters->frameRate /
273 // Threshold on packetLoss and bitRrate/frameRate (=average #packets),
341 codeRateDelta, parameters->bitRate, parameters->frameRate,
432 float frameRate = parameters->frameRate * frameRateRatio;
438 return static_cast<int>(adjustmentFactor * bitRate / frameRate);
642 _currentParameters.frameRate = _frameRate; // rename actual frame rate?
  /frameworks/av/media/libstagefright/codecs/m4v_h263/enc/test/
m4v_h263_enc_test.cpp 54 fprintf(stderr, "Max framerate %d\n", kMaxFrameRate);
87 int32_t frameRate;
88 frameRate = atoi(argv[6]);
89 if (frameRate > kMaxFrameRate || frameRate <= 0) {
90 fprintf(stderr, "Unsupported frame rate %d\n", frameRate);
148 encParams.encFrameRate[0] = frameRate;
156 encParams.tickPerSrc = encParams.timeIncRes / frameRate;
168 encParams.intraPeriod = (IDRFrameRefreshIntervalInSec * frameRate);
216 vin.timestamp = (numFramesEncoded * 1000) / frameRate; // in ms
    [all...]
  /frameworks/base/media/tests/MediaFrameworkTest/src/com/android/mediaframeworktest/
MediaRecorderStressTestRunner.java 67 String frameRate = (String) icicle.get("frame_rate");
83 if (frameRate != null) {
84 mFrameRate = Integer.parseInt(frameRate);
  /hardware/intel/common/libmix/videoencoder/
VideoEncoderVP8.cpp 193 uint32_t frameRateNum = mComParams.frameRate.frameRateNum;
194 uint32_t frameRateDenom = mComParams.frameRate.frameRateDenom;
208 misc_framerate->framerate = (unsigned int) (frameRateNum + frameRateDenom /2) / frameRateDenom;
212 if(mTemporalLayerBitrateFramerate[layer_id].frameRate != 0)
213 misc_framerate->framerate = mTemporalLayerBitrateFramerate[layer_id].frameRate;
257 unsigned int frameRateNum = mComParams.frameRate.frameRateNum;
258 unsigned int frameRateDenom = mComParams.frameRate.frameRateDenom;
259 unsigned int frameRate = (unsigned int)(frameRateNum + frameRateDenom /2);
272 misc_maxframesize->max_frame_size = (unsigned int)((bitRate/frameRate) * mVideoParamsVP8.max_frame_size_ratio)
    [all...]
  /hardware/intel/img/hwcomposer/merrifield/common/observers/
MultiDisplayObserver.h 36 int frameRate;
  /cts/tests/tests/media/src/android/media/cts/
NdkMediaCodec.java 64 int frameRate,
110 int frameRate = format.getInteger(MediaFormat.KEY_FRAME_RATE, -1);
128 frameRate,
  /external/webrtc/webrtc/modules/video_capture/
video_capture_impl.cc 131 const uint32_t frameRate = CalculateFrameRate(now);
132 _captureCallBack->OnCaptureFrameRate(_id, frameRate);
  /hardware/intel/common/utils/ISV/include/
isv_worker.h 80 uint32_t frameRate;
  /external/walt/android/WALT/app/src/main/java/org/chromium/latency/walt/
AudioFragment.java 270 int frameRate = audioTest.getOptimalFrameRate();
272 float timeStamp = (float) i / frameRate * 1000f;
AudioTest.java 56 private final int frameRate;
81 public static native void createBufferQueueAudioPlayer(int frameRate, int framesPerBuffer);
84 public static native void createAudioRecorder(int frameRate, int framesToRecord);
104 frameRate = Integer.parseInt(frameRateStr);
109 createBufferQueueAudioPlayer(frameRate, framesPerBuffer);
139 return frameRate;
162 int framesToRecord = (int) (0.001 * msToRecord * frameRate);
163 createAudioRecorder(frameRate, framesToRecord);
371 double duration_us = wave.length * 1e6 / frameRate;
375 double silent_us = noisyAtFrame * 1e6 / frameRate;
    [all...]
  /frameworks/base/media/tests/MediaFrameworkTest/src/com/android/mediaframeworktest/stress/
MediaRecorderStressTest.java 176 int frameRate;
187 frameRate = camcorderProfile.videoFrameRate;
194 frameRate = MediaRecorderStressTestRunner.mFrameRate;
223 Log.v(TAG, "frame rate : " + frameRate);
234 mRecorder.setVideoFrameRate(frameRate);
  /device/generic/goldfish/camera/
EmulatedCamera.cpp 400 int frameRate = mParameters.getPreviewFrameRate();
401 status_t res = mCallbackNotifier.enableVideoRecording(frameRate);
    [all...]
  /external/webrtc/talk/app/webrtc/androidtests/src/org/webrtc/
VideoCapturerAndroidTestFixtures.java 588 final int frameRate = 30;
593 capturer.onOutputFormatRequest(scaledWidth, scaledHeight, frameRate);
  /frameworks/base/media/tests/MediaFrameworkTest/src/com/android/mediaframeworktest/functional/mediarecorder/
MediaRecorderTest.java 81 private void recordVideo(int frameRate, int width, int height,
93 mRecorder.setVideoFrameRate(frameRate);
228 int frameRate, int captureRate, int width, int height,
242 recorder.setVideoFrameRate(frameRate);
374 private boolean invalidRecordSetting(int frameRate, int width, int height,
385 mRecorder.setVideoFrameRate(frameRate);
484 int frameRate = MediaProfileReader.getMaxFrameRateForCodec(codec);
485 recordVideo(frameRate, 352, 288, codec,
560 int frameRate = MediaProfileReader.getMaxFrameRateForCodec(codec);
565 success = recordVideoFromSurface(frameRate, 0, 352, 288, codec
    [all...]
  /frameworks/base/media/tests/MediaFrameworkTest/src/com/android/mediaframeworktest/performance/
MediaPlayerPerformance.java 222 private boolean stressVideoRecord(int frameRate, int width, int height, int videoFormat,
237 mRecorder.setVideoFrameRate(frameRate);
456 int frameRate = MediaProfileReader
458 assertTrue("H263 video recording frame rate", frameRate != -1);
460 assertTrue(stressVideoRecord(frameRate, mVideoWidth, mVideoHeight,
477 int frameRate = MediaProfileReader.getMaxFrameRateForCodec
479 assertTrue("MPEG4 video recording frame rate", frameRate != -1);
481 assertTrue(stressVideoRecord(frameRate, mVideoWidth, mVideoHeight,
499 int frameRate = MediaProfileReader
501 assertTrue("H263 video recording frame rate", frameRate != -1)
    [all...]
  /cts/common/device-side/util/src/com/android/compatibility/common/util/
MediaUtils.java 696 int frameRate = Math.min(
698 format.setInteger(MediaFormat.KEY_FRAME_RATE, frameRate);
    [all...]
  /frameworks/av/media/libmediaplayerservice/
StagefrightRecorder.cpp 946 ALOGV("Recording frameRate: %d captureFps: %f",
    [all...]

Completed in 767 milliseconds

1 2 3 4 5