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

1 2 3 4 5 6

  /external/aac/libMpegTPEnc/src/
tpenc_adif.h 102 INT bitRate;
  /frameworks/av/media/libstagefright/codecs/common/include/
voAAC.h 46 int bitRate; /*! encoder bit rate in bits/sec */
  /external/libopus/silk/
control.h 68 /* I: Bitrate during active speech in bits/second; internally limited */
69 opus_int32 bitRate;
83 /* I: Flag to use constant bitrate */
  /external/webrtc/webrtc/modules/video_coding/
video_sender.cc 62 uint32_t bitRate = _mediaOpt.SentBitRate();
64 _sendStatsCallback->SendStatistics(bitRate, frameRate);
159 // Get encode bitrate
160 int VideoSender::Bitrate(unsigned int* bitrate) const {
167 *bitrate = _encoder->GetEncoderParameters().target_bitrate;
video_receiver.cc 73 uint32_t bitRate;
75 _receiver.ReceiveStatistics(&bitRate, &frameRate);
76 _receiveStatsCallback->OnReceiveRatesUpdated(bitRate, frameRate);
media_opt_util.h 51 bitRate(0.0f),
64 float bitRate;
214 // Turn off the FEC based on low bitrate and other factors.
253 // - bitRate : The current target bit rate in kbits/s
254 void UpdateBitRate(float bitRate);
media_opt_util.cc 138 // Bitrate below which we turn off FEC, regardless of reported packet loss.
211 // nackCost = (bitRate - nackCost) * (lossPr)
253 // FEC PROTECTION SETTINGS: varies with packet loss and bitrate
287 // (for fixed bitRate and packetLoss) based on system size.
341 codeRateDelta, parameters->bitRate, parameters->frameRate,
416 codeRateKey, parameters->bitRate, packetLoss, 0);
419 codeRateDelta, parameters->bitRate, packetLoss, 1);
431 float bitRate = parameters->bitRate * bitRateRatio;
438 return static_cast<int>(adjustmentFactor * bitRate / frameRate)
    [all...]
  /frameworks/av/media/libstagefright/codecs/aacenc/inc/
aacenc_core.h 41 Word32 bitRate; /* encoder bit rate in bits/sec */
  /frameworks/av/media/libstagefright/codecs/m4v_h263/enc/
SoftMPEG4Encoder.cpp 139 mEncParams->bitRate[0] = mBitrate;
229 OMX_VIDEO_PARAM_BITRATETYPE *bitRate =
232 if (!isValidOMXParam(bitRate)) {
236 if (bitRate->nPortIndex != 1) {
240 bitRate->eControlRate = OMX_Video_ControlRateVariable;
241 bitRate->nTargetBitrate = mBitrate;
310 OMX_VIDEO_PARAM_BITRATETYPE *bitRate =
313 if (!isValidOMXParam(bitRate)) {
317 if (bitRate->nPortIndex != 1 ||
318 bitRate->eControlRate != OMX_Video_ControlRateVariable)
    [all...]
  /frameworks/av/media/libstagefright/codecs/mp3dec/include/
pvmp3decoder_api.h 200 * This value is the bitrate in units of bits/second. IT
205 int32 bitRate;
223 * bitrate. For debugging purposes only, as it will overflow for very long clips
  /frameworks/base/media/tests/MediaFrameworkTest/src/com/android/mediaframeworktest/
MediaRecorderStressTestRunner.java 70 String bitRate = (String) icicle.get("bit_rate");
92 if (bitRate != null) {
93 mBitRate = Integer.parseInt(bitRate);
  /hardware/intel/common/libmix/videoencoder/
VideoEncoderVP8.cpp 91 vp8SeqParam.bits_per_second = mComParams.rcParams.bitRate;
165 misc_rate_ctrl->bits_per_second = mComParams.rcParams.bitRate;
169 if(mTemporalLayerBitrateFramerate[layer_id].bitRate != 0)
170 misc_rate_ctrl->bits_per_second = mTemporalLayerBitrateFramerate[layer_id].bitRate;
260 unsigned int bitRate = mComParams.rcParams.bitRate;
272 misc_maxframesize->max_frame_size = (unsigned int)((bitRate/frameRate) * mVideoParamsVP8.max_frame_size_ratio);
  /external/mp4parser/isoparser/src/main/java/com/coremedia/iso/boxes/apple/
AppleLosslessSpecificBox.java 20 bitrate? 32bit samplerate
31 private long bitRate; // 32bit
107 return bitRate;
110 public void setBitRate(int bitRate) {
111 this.bitRate = bitRate;
135 bitRate = IsoTypeReader.readUInt32(content);
151 IsoTypeWriter.writeUInt32(byteBuffer, bitRate);
  /frameworks/av/media/libstagefright/codecs/avc/enc/
SoftAVCEncoder.cpp 265 mEncParams->bitrate = mBitrate;
370 OMX_VIDEO_PARAM_BITRATETYPE *bitRate =
373 if (!isValidOMXParam(bitRate)) {
377 if (bitRate->nPortIndex != 1) {
381 bitRate->eControlRate = OMX_Video_ControlRateVariable;
382 bitRate->nTargetBitrate = mBitrate;
435 OMX_VIDEO_PARAM_BITRATETYPE *bitRate =
438 if (!isValidOMXParam(bitRate)) {
442 if (bitRate->nPortIndex != 1 ||
443 bitRate->eControlRate != OMX_Video_ControlRateVariable)
    [all...]
  /frameworks/av/media/libstagefright/codecs/on2/enc/
SoftVPXEncoder.cpp 78 mBitrateControlMode(VPX_VBR), // variable bitrate
170 // bitrate - expressed as percentage of the target bitrate.
173 // bitrate - expressed as percentage of the target bitrate.
257 // Set bitrate values for each layer
373 OMX_VIDEO_PARAM_BITRATETYPE *bitrate = local
376 if (!isValidOMXParam(bitrate)) {
380 if (bitrate->nPortIndex != kOutputPortIndex) {
384 bitrate->nTargetBitrate = mBitrate
    [all...]
  /frameworks/av/media/libstagefright/webm/
WebmWriter.cpp 170 uint64_t WebmWriter::estimateCuesSize(int32_t bitRate) {
197 if (bitRate > 0) {
198 int64_t size2 = ((mMaxFileDurationLimitUs * bitRate * 6) / 1000 / 8000000);
224 mMaxFileSizeLimitBytes, mMaxFileDurationLimitUs, bitRate, size);
486 int32_t bitRate = -1;
488 params->findInt32(kKeyBitRate, &bitRate);
490 mEstimatedCuesSize = estimateCuesSize(bitRate);
  /external/aac/libAACdec/include/
aacdecoder_lib.h     [all...]
  /external/aac/libAACenc/src/
aacenc.h 103 #define BITRATE_MAX_LD 70000 /* Max assumed bitrate for bitres calculation */
104 #define BITRATE_MIN_LD 12000 /* Min assumed bitrate for bitres calculation */
126 AAC_ENC_UNSUPPORTED_BITRATE = 0x3020, /*!< The chosen bitrate is not supported. */
128 AAC_ENC_UNSUPPORTED_ANC_BITRATE = 0x3040, /*!< Unsupported ancillay bitrate. */
166 AACENC_BR_MODE_INVALID = -1, /*!< Invalid bitrate mode. */
167 AACENC_BR_MODE_CBR = 0, /*!< Constant bitrate mode. */
168 AACENC_BR_MODE_VBR_1 = 1, /*!< Variable bitrate mode, about 32 kbps/channel. */
169 AACENC_BR_MODE_VBR_2 = 2, /*!< Variable bitrate mode, about 40 kbps/channel. */
170 AACENC_BR_MODE_VBR_3 = 3, /*!< Variable bitrate mode, about 48-56 kbps/channel. */
171 AACENC_BR_MODE_VBR_4 = 4, /*!< Variable bitrate mode, about 64 kbps/channel. *
    [all...]
  /external/aac/libSBRenc/include/
sbr_encoder.h 114 INT bitRate;
267 INT bitRate;
296 * \brief Get closest working bitrate to specified desired
297 * bitrate for a single SBR element.
298 * \param bitRate The desired target bit rate
302 * \return Closest working bit rate to bitRate value
304 UINT sbrEncoder_LimitBitRate(UINT bitRate, UINT numChannels, UINT coreSampleRate, AUDIO_OBJECT_TYPE aot);
401 * \brief SBR encoder bitrate estimation.
403 * \return Estimated bitrate.
  /frameworks/av/media/libstagefright/codecs/avcenc/
SoftAVCEnc.cpp 846 /* Video control Set Bitrate */
929 OMX_VIDEO_PARAM_BITRATETYPE *bitRate =
932 if (!isValidOMXParam(bitRate)) {
936 if (bitRate->nPortIndex != 1) {
940 bitRate->eControlRate = OMX_Video_ControlRateVariable;
941 bitRate->nTargetBitrate = mBitrate;
990 OMX_VIDEO_PARAM_BITRATETYPE *bitRate =
993 if (!isValidOMXParam(bitRate)) {
997 return internalSetBitrateParams(bitRate)
    [all...]
  /frameworks/av/media/libstagefright/codecs/m4v_h263/enc/include/
mp4enc_api.h 166 /** @brief Specifies target bit rates in bits per second unit, bitRate[n] represents the n-th layer's target bit rate. */
167 Int bitRate[2];
409 * @param bitRate is the pointers to array of target bit rates in bits per second unit,
410 * bitRate[n] represents the n-th layer's target bit rate.
413 OSCL_IMPORT_REF Bool PVUpdateBitRate(VideoEncControls *encCtrl, Int *bitRate); /* for 2-way */
  /frameworks/base/media/tests/MediaFrameworkTest/src/com/android/mediaframeworktest/stress/
MediaRecorderStressTest.java 179 int bitRate;
190 bitRate = camcorderProfile.videoBitRate;
197 bitRate = MediaRecorderStressTestRunner.mBitRate;
226 Log.v(TAG, "bit rate : " + bitRate);
238 mRecorder.setVideoEncodingBitRate(bitRate);
  /hardware/ti/omap3/omx/audio/src/openmax_il/g726_dec/tests/
G726DecTest.c 118 int bitRate = 0;
436 bitRate = atoi(argv[2]);
437 APP_DPRINT("%d :: App: bit rate = %d\n",__LINE__, bitRate);
573 if (bitRate == 16){
576 else if(bitRate == 24){
579 else if(bitRate == 32){
582 else if(bitRate == 40){
    [all...]
  /frameworks/av/media/libstagefright/
Utils.cpp 620 msg->setInt32("bitrate", avgBitRate);
626 msg->setInt32("max-bitrate", maxBitRate);
    [all...]
  /frameworks/av/media/libstagefright/codecs/avc/enc/src/
avcenc_int.h 170 int bitrate; /* bitrate for current frame */ member in struct:tagMultiPass
196 /* For target bitrate or framerate update */
197 OsclFloat target_bits_per_frame; /* = C = bitrate/framerate */
219 /* bitrate-robustness tradeoff */
240 int32 bitRate; /* target bit rate for the overall clip in bits/second*/
313 int max_BitVariance_num; /* the number of the maximum bit variance within the given buffer with the unit of 10% of bitrate/framerate*/

Completed in 772 milliseconds

1 2 3 4 5 6