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

1 2 3

  /external/aac/libMpegTPEnc/src/
tpenc_adif.h 114 INT bitRate;
  /frameworks/av/media/libstagefright/codecs/common/include/
voAAC.h 46 int bitRate; /*! encoder bit rate in bits/sec */
  /frameworks/av/cmds/stagefright/
audioloop.cpp 103 int32_t bitRate = sampleRate;
133 meta->setInt32("bitrate", bitRate);
  /external/libopus/silk/
control.h 68 /* I: Bitrate during active speech in bits/second; internally limited */
69 opus_int32 bitRate;
86 /* 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/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);
  /external/aac/libAACdec/include/
aacdecoder_lib.h 275 bitrate, and compatible transport type. Audio samples for the lost frames can be
    [all...]
  /external/aac/libAACenc/src/
aacenc.h 143 0x3020, /*!< The chosen bitrate is not supported. */
147 0x3040, /*!< Unsupported ancillay bitrate. */
191 AACENC_BR_MODE_INVALID = -1, /*!< Invalid bitrate mode. */
192 AACENC_BR_MODE_CBR = 0, /*!< Constant bitrate mode. */
193 AACENC_BR_MODE_VBR_1 = 1, /*!< Variable bitrate mode, very low bitrate. */
194 AACENC_BR_MODE_VBR_2 = 2, /*!< Variable bitrate mode, low bitrate. */
195 AACENC_BR_MODE_VBR_3 = 3, /*!< Variable bitrate mode, medium bitrate. *
    [all...]
  /external/aac/libSBRenc/include/
sbr_encoder.h 123 INT bitRate;
282 INT bitRate;
309 * \brief Get closest working bitrate to specified desired
310 * bitrate for a single SBR element.
311 * \param bitRate The desired target bit rate
315 * \return Closest working bit rate to bitRate value
317 UINT sbrEncoder_LimitBitRate(UINT bitRate, UINT numChannels,
447 * \brief SBR encoder bitrate estimation.
449 * \return Estimated bitrate.
  /frameworks/av/media/libstagefright/codecs/avcenc/
SoftAVCEnc.cpp 824 /* Video control Set Bitrate */
910 OMX_VIDEO_PARAM_BITRATETYPE *bitRate =
913 if (!isValidOMXParam(bitRate)) {
917 if (bitRate->nPortIndex != 1) {
921 bitRate->eControlRate = OMX_Video_ControlRateVariable;
922 bitRate->nTargetBitrate = mBitrate;
972 OMX_VIDEO_PARAM_BITRATETYPE *bitRate =
975 if (!isValidOMXParam(bitRate)) {
979 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);
  /system/bt/stack/a2dp/
a2dp_aac.cc 49 uint32_t bitRate; /* Bit rate */
64 // bitRate
79 // bitRate
90 A2DP_AAC_DEFAULT_BITRATE, // bitRate
146 *p_result++ |= (uint8_t)((p_ie->bitRate & A2DP_AAC_BIT_RATE_MASK0) >> 16);
147 *p_result++ = (uint8_t)((p_ie->bitRate & A2DP_AAC_BIT_RATE_MASK1) >> 8);
148 *p_result++ = (uint8_t)(p_ie->bitRate & A2DP_AAC_BIT_RATE_MASK2);
189 p_ie->bitRate = ((*p_codec_info) << 16 & A2DP_AAC_BIT_RATE_MASK0) |
279 cfg_cie.bitRate, p_cap->bitRate);
    [all...]
  /frameworks/av/media/libmediaplayer2/nuplayer2/
NuPlayer2.cpp 70 int32_t bitRate = 0;
83 if (meta->findInt32(kKeyBitRate, &bitRate)) {
84 param.addInt(String8(AUDIO_OFFLOAD_CODEC_AVG_BIT_RATE), bitRate);
93 ALOGV("sendMetaDataToHal: bitRate %d, sampleRate %d, chanMask %d,"
94 "delaySample %d, paddingSample %d", bitRate, sampleRate,
    [all...]
  /frameworks/av/media/libstagefright/
Utils.cpp 621 msg->setInt32("bitrate", avgBitRate);
627 msg->setInt32("max-bitrate", maxBitRate);
    [all...]

Completed in 466 milliseconds

1 2 3