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

1 2 3 4 5 6 7 8 9

  /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 137 mEncParams->bitRate[0] = mBitrate;
220 OMX_VIDEO_PARAM_BITRATETYPE *bitRate =
223 if (!isValidOMXParam(bitRate)) {
227 if (bitRate->nPortIndex != 1) {
231 bitRate->eControlRate = OMX_Video_ControlRateVariable;
232 bitRate->nTargetBitrate = mBitrate;
301 OMX_VIDEO_PARAM_BITRATETYPE *bitRate =
304 if (!isValidOMXParam(bitRate)) {
308 if (bitRate->nPortIndex != 1 ||
309 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);
  /cts/tests/tests/media/src/android/media/cts/
NdkMediaCodec.java 63 int bitRate,
109 int bitRate = format.getInteger(MediaFormat.KEY_BIT_RATE, -1);
127 bitRate,
  /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/on2/enc/
SoftVPXEncoder.cpp 148 // bitrate - expressed as percentage of the target bitrate.
151 // bitrate - expressed as percentage of the target bitrate.
232 // Set bitrate values for each layer
345 OMX_VIDEO_PARAM_BITRATETYPE *bitrate = local
348 if (!isValidOMXParam(bitrate)) {
352 if (bitrate->nPortIndex != kOutputPortIndex) {
356 bitrate->nTargetBitrate = mBitrate;
359 bitrate->eControlRate = OMX_Video_ControlRateVariable
    [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);
  /system/bt/stack/a2dp/
a2dp_aac.cc 48 uint32_t bitRate; /* Bit rate */
63 // bitRate
74 A2DP_AAC_DEFAULT_BITRATE, // bitRate
125 *p_result++ |= (uint8_t)((p_ie->bitRate & A2DP_AAC_BIT_RATE_MASK0) >> 16);
126 *p_result++ = (uint8_t)((p_ie->bitRate & A2DP_AAC_BIT_RATE_MASK1) >> 8);
127 *p_result++ = (uint8_t)(p_ie->bitRate & A2DP_AAC_BIT_RATE_MASK2);
168 p_ie->bitRate = ((*p_codec_info) << 16 & A2DP_AAC_BIT_RATE_MASK0) |
257 cfg_cie.bitRate, p_cap->bitRate);
328 (aac_cie_a.bitRate == aac_cie_b.bitRate)
    [all...]
  /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 825 /* Video control Set Bitrate */
911 OMX_VIDEO_PARAM_BITRATETYPE *bitRate =
914 if (!isValidOMXParam(bitRate)) {
918 if (bitRate->nPortIndex != 1) {
922 bitRate->eControlRate = OMX_Video_ControlRateVariable;
923 bitRate->nTargetBitrate = mBitrate;
973 OMX_VIDEO_PARAM_BITRATETYPE *bitRate =
976 if (!isValidOMXParam(bitRate)) {
980 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);
  /frameworks/av/media/libstagefright/
Utils.cpp 650 msg->setInt32("bitrate", avgBitRate);
656 msg->setInt32("max-bitrate", maxBitRate);
    [all...]
  /external/aac/libSYS/include/
FDK_audio.h 334 INT bitRate; /**< Average bitrate. */

Completed in 740 milliseconds

1 2 3 4 5 6 7 8 9