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

1 2 3

  /external/chromium_org/third_party/webrtc/modules/video_coding/codecs/test_framework/
benchmark.cc 69 const int frameRate[] = {10, 15, 30};
77 const int nFrameRates = sizeof(frameRate)/sizeof(*frameRate);
101 ss << frameRate[j];
106 _target = new const VideoSource(outFileName, size[i], frameRate[j]);
118 << ", " << frameRate[j] << " fps" << std::endl << "Bitrate [kbps]:";
120 << "," << frameRate[j] << " fps" << std::endl << "Bitrate [kbps]";
  /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);
  /external/chromium_org/third_party/webrtc/modules/video_capture/
video_capture_impl.cc 138 const uint32_t frameRate = CalculateFrameRate(now);
139 _captureCallBack->OnCaptureFrameRate(_id, frameRate);
  /external/chromium_org/third_party/webrtc/modules/video_coding/main/source/
video_receiver.cc 82 uint32_t frameRate;
83 _receiver.ReceiveStatistics(&bitRate, &frameRate);
84 _receiveStatsCallback->OnReceiveStatisticsUpdate(bitRate, frameRate);
video_sender.cc 90 uint32_t frameRate;
94 frameRate = _mediaOpt.SentFrameRate();
96 _sendStatsCallback->SendStatistics(bitRate, frameRate);
234 int VideoSender::FrameRate(unsigned int* framerate) const {
240 *framerate = _encoder->FrameRate();
media_opt_util.cc 128 float base_layer_framerate = parameters->frameRate /
303 (parameters->bitRate / (parameters->frameRate));
396 // Threshold on packetLoss and bitRrate/frameRate (=average #packets),
471 parameters->frameRate,
573 float frameRate = parameters->frameRate * frameRateRatio;
579 return static_cast<int>(adjustmentFactor * bitRate / frameRate);
906 _currentParameters.frameRate = _frameRate; // rename actual frame rate?
media_opt_util.h 52 packetsPerFrame(0.0f), packetsPerFrameKey(0.0f), frameRate(0.0f),
63 float frameRate;
313 // - frameRate : The current target frame rate.
314 void UpdateFrameRate(float frameRate) { _frameRate = frameRate; }
  /external/chromium_org/third_party/webrtc/modules/video_coding/main/test/
mt_rx_tx_test.cc 42 float frameRate = state->_args.frameRate;
71 state->_timestamp += (uint32_t)(9e4 / frameRate);
114 float frameRate = args.frameRate;
226 sendCodec.maxFramerate = (uint8_t)frameRate;
test_util.h 38 int 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...]
VideoEncoderDef.h 370 VideoFrameRate frameRate;
399 this->frameRate = other.frameRate;
562 VideoFrameRate frameRate;
728 uint32_t frameRate;
  /hardware/intel/common/utils/ISV/include/
isv_worker.h 80 uint32_t frameRate;
  /frameworks/base/media/tests/MediaFrameworkTest/src/com/android/mediaframeworktest/functional/mediarecorder/
MediaRecorderTest.java 79 private void recordVideo(int frameRate, int width, int height,
91 mRecorder.setVideoFrameRate(frameRate);
226 int frameRate, int captureRate, int width, int height,
238 recorder.setVideoFrameRate(frameRate);
359 private boolean invalidRecordSetting(int frameRate, int width, int height,
370 mRecorder.setVideoFrameRate(frameRate);
446 int frameRate = MediaProfileReader.getMaxFrameRateForCodec(codec);
447 recordVideo(frameRate, 352, 288, codec,
522 int frameRate = MediaProfileReader.getMaxFrameRateForCodec(codec);
527 success = recordVideoFromSurface(frameRate, 0, 352, 288, codec
    [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);
  /cts/tests/tests/media/src/android/media/cts/
MediaRecorderTest.java 205 int frameRate = params.getPreviewFrameRate();
214 mMediaRecorder.setVideoFrameRate(frameRate);
230 int targetDurMs = timelapse? ((int) (durMs * (captureRate / frameRate))): durMs;
Vp8CodecTestBase.java 205 int frameRate;
243 int frameRate,
264 params.frameCount = encodeSeconds * frameRate;
265 params.frameRate = frameRate;
292 int frameRate,
305 frameRate,
508 * @param frameRate Frame rate of input file in frames per second
514 int frameRate,
584 inPresentationTimeUs = (inputFrameIndex * 1000000) / frameRate;
    [all...]
  /frameworks/av/media/libstagefright/httplive/
PlaylistFetcher.cpp     [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);
441 int frameRate = MediaProfileReader
443 assertTrue("H263 video recording frame rate", frameRate != -1);
445 assertTrue(stressVideoRecord(frameRate, mVideoWidth, mVideoHeight,
462 int frameRate = MediaProfileReader.getMaxFrameRateForCodec
464 assertTrue("MPEG4 video recording frame rate", frameRate != -1);
466 assertTrue(stressVideoRecord(frameRate, mVideoWidth, mVideoHeight,
484 int frameRate = MediaProfileReader
486 assertTrue("H263 video recording frame rate", frameRate != -1)
    [all...]
  /hardware/ti/omap4xxx/camera/OMXCameraAdapter/
OMXCameraAdapter.cpp 47 //frames skipped before recalculating the framerate
424 int minFramerate, maxFramerate, frameRate;
463 frameRate = params.getPreviewFrameRate();
475 if ( 0 >= frameRate )
477 frameRate = maxFramerate;
495 if ( 0 < frameRate )
500 cap->mFrameRate = frameRate;
513 cap->mFrameRate = frameRate;
    [all...]
  /frameworks/av/media/libmediaplayerservice/
StagefrightRecorder.cpp     [all...]
  /frameworks/av/media/libstagefright/codecs/m4v_h263/dec/src/
mp4lib_int.h 250 int frameRate; /* Output frame Rate (over 10 seconds) */
260 /* framerate and bitrate statistics counters. 08/23/2000 */
  /hardware/ti/omap4-aah/camera/OMXCameraAdapter/
OMXCameraAdapter.cpp 48 //frames skipped before recalculating the framerate
566 int minFramerate, maxFramerate, frameRate;
596 frameRate = params.getPreviewFrameRate();
606 if ( 0 >= frameRate ) {
607 frameRate = maxFramerate;
618 if ( 0 < frameRate )
623 cap->mFrameRate = frameRate;
636 cap->mFrameRate = frameRate;
930 // Update framerate capabilities dynamically
    [all...]
  /hardware/ti/omap4xxx/test/CameraHal/
camera_test_menu.cpp 399 } frameRate[] = {
931 printf("error while configuring video framerate\n");
937 printf("error while configuring video framerate\n");
1184 params.setPreviewFrameRate(frameRate[ARRAY_SIZE(frameRate) - 1].fps);
    [all...]
  /frameworks/av/media/libstagefright/
ACodec.cpp     [all...]
OMXCodec.cpp 880 int32_t width, height, frameRate, bitRate, stride, sliceHeight;
883 success = success && meta->findInt32(kKeyFrameRate, &frameRate);
932 video_def->xFramerate = (frameRate << 16); // Q16 format
992 static OMX_U32 setPFramesSpacing(int32_t iFramesInterval, int32_t frameRate) {
998 OMX_U32 ret = frameRate * iFramesInterval - 1;
    [all...]

Completed in 510 milliseconds

1 2 3