HomeSort by relevance Sort by last modified time
    Searched refs:bits_per_second (Results 1 - 25 of 35) sorted by null

1 2

  /external/chromium_org/net/quic/
quic_bandwidth.cc 21 QuicBandwidth QuicBandwidth::FromBitsPerSecond(int64 bits_per_second) {
22 return QuicBandwidth(bits_per_second);
54 QuicBandwidth::QuicBandwidth(int64 bits_per_second)
55 : bits_per_second_(bits_per_second) {
56 DCHECK_GE(bits_per_second, 0);
quic_bandwidth.h 23 static QuicBandwidth FromBitsPerSecond(int64 bits_per_second);
61 explicit QuicBandwidth(int64 bits_per_second);
  /external/chromium_org/media/cast/congestion_control/
congestion_control.cc 187 uint32 bits_per_second = static_cast<uint32>( local
189 VLOG(3) << " FBR:" << (bits_per_second / 1E6)
192 bits_per_second = std::max(bits_per_second, min_bitrate_configured_);
193 bits_per_second = std::min(bits_per_second, max_bitrate_configured_);
194 return bits_per_second;
  /hardware/intel/common/libva/va/
va_enc_vp8.h 86 unsigned int bits_per_second; member in struct:_VAEncSequenceParameterBufferVP8
va_enc_mpeg2.h 123 * bits_per_second may be derived from bit_rate.
126 unsigned int bits_per_second; member in struct:_VAEncSequenceParameterBufferMPEG2
va_enc_h264.h 168 unsigned int bits_per_second; member in struct:_VAEncSequenceParameterBufferH264
  /hardware/intel/img/psb_video/src/
tng_H263ES.c 250 if (psSeqParams->bits_per_second > TOPAZ_H263_MAX_BITRATE) {
252 drv_debug_msg(VIDEO_DEBUG_GENERAL, " bits_per_second(%d) exceeds \
254 psSeqParams->bits_per_second,
257 ctx->sRCParams.ui32BitsPerSecond = psSeqParams->bits_per_second;
405 rate_control_param->bits_per_second);
407 if ((rate_control_param->bits_per_second == psRCParams->ui32BitsPerSecond) &&
413 if (rate_control_param->bits_per_second > TOPAZ_H263_MAX_BITRATE) {
415 drv_debug_msg(VIDEO_DEBUG_GENERAL, " bits_per_second(%d) exceeds \
417 rate_control_param->bits_per_second,
420 psRCParams->ui32BitsPerSecond = rate_control_param->bits_per_second;
    [all...]
pnw_H264ES.c 234 if (!pSequenceParams->bits_per_second) {
235 pSequenceParams->bits_per_second = ctx->Height * ctx->Width * 30 * 12;
236 drv_debug_msg(VIDEO_DEBUG_GENERAL, "bits_per_second is 0, set to %d\n",
237 pSequenceParams->bits_per_second);
240 (pSequenceParams->bits_per_second == ctx->sRCParams.BitsPerSecond ?
243 if (pSequenceParams->bits_per_second > TOPAZ_H264_MAX_BITRATE) {
245 drv_debug_msg(VIDEO_DEBUG_GENERAL, " bits_per_second(%d) exceeds \
247 pSequenceParams->bits_per_second,
261 if (pSequenceParams->bits_per_second > max_bps) {
264 "\n clip to %d bps\n", pSequenceParams->bits_per_second, max_bps)
    [all...]
tng_MPEG4ES.c 260 if (psSeqParams->bits_per_second > TOPAZ_MPEG4_MAX_BITRATE) {
262 drv_debug_msg(VIDEO_DEBUG_GENERAL, " bits_per_second(%d) exceeds \
264 psSeqParams->bits_per_second,
267 ctx->sRCParams.ui32BitsPerSecond = psSeqParams->bits_per_second;
402 rate_control_param->bits_per_second);
404 if ((rate_control_param->bits_per_second == psRCParams->ui32BitsPerSecond) &&
410 if (rate_control_param->bits_per_second > TOPAZ_MPEG4_MAX_BITRATE) {
412 drv_debug_msg(VIDEO_DEBUG_GENERAL, " bits_per_second(%d) exceeds \
414 rate_control_param->bits_per_second,
417 psRCParams->ui32BitsPerSecond = rate_control_param->bits_per_second;
    [all...]
tng_H264ES.c 242 "%s psRCParams->ui32BitsPerSecond = %d, psMiscRcParams->bits_per_second = %d \n",
243 __FUNCTION__, psRCParams->ui32BitsPerSecond, psMiscRcParams->bits_per_second);
245 if (psMiscRcParams->bits_per_second > TOPAZ_H264_MAX_BITRATE) {
247 "%s: bits_per_second(%d) exceeds the maximum bitrate, set it with %d\n",
248 __FUNCTION__, psMiscRcParams->bits_per_second, TOPAZ_H264_MAX_BITRATE);
249 psMiscRcParams->bits_per_second = TOPAZ_H264_MAX_BITRATE;
252 if ((psRCParams->ui32BitsPerSecond != psMiscRcParams->bits_per_second) &&
253 psMiscRcParams->bits_per_second != 0) {
254 psRCParams->ui32BitsPerSecond = psMiscRcParams->bits_per_second;
260 psRCParams->ui32BitsPerSecond, psMiscRcParams->bits_per_second);
    [all...]
vsp_vp8.c 310 seq->rc_target_bitrate = va_seq->bits_per_second / 1000;
312 (va_seq->bits_per_second / seq->frame_rate);
620 if (rate_control_param->bits_per_second / 1000 != seq->rc_target_bitrate) {
622 seq->rc_target_bitrate, rate_control_param->bits_per_second / 1000);
623 seq->rc_target_bitrate = rate_control_param->bits_per_second / 1000;
624 seq->ts_target_bitrate[0] = rate_control_param->bits_per_second / 1000;
629 if (rate_control_param->bits_per_second / 1000 != seq->ts_target_bitrate[layer_id]) {
631 seq->ts_target_bitrate[layer_id], rate_control_param->bits_per_second / 1000);
632 seq->ts_target_bitrate[layer_id] = rate_control_param->bits_per_second / 1000;
    [all...]
pnw_H263ES.c 203 if (pSequenceParams->bits_per_second > TOPAZ_H263_MAX_BITRATE) {
205 drv_debug_msg(VIDEO_DEBUG_GENERAL, " bits_per_second(%d) exceeds \
207 pSequenceParams->bits_per_second,
210 ctx->sRCParams.BitsPerSecond = pSequenceParams->bits_per_second;
pnw_MPEG4ES.c 213 if (seq_params->bits_per_second > TOPAZ_MPEG4_MAX_BITRATE) {
215 drv_debug_msg(VIDEO_DEBUG_GENERAL, " bits_per_second(%d) exceeds \
217 seq_params->bits_per_second,
220 ctx->sRCParams.BitsPerSecond = seq_params->bits_per_second;
  /hardware/intel/img/psb_video/src/mrst/
lnc_H263ES.c 206 (ctx->sRCParams.BitsPerSecond != pSequenceParams->bits_per_second))
209 if (pSequenceParams->bits_per_second > TOPAZ_H263_MAX_BITRATE) {
211 drv_debug_msg(VIDEO_DEBUG_GENERAL, " bits_per_second(%d) exceeds \
213 pSequenceParams->bits_per_second,
216 ctx->sRCParams.BitsPerSecond = pSequenceParams->bits_per_second;
457 rate_control_param->bits_per_second);
459 if (rate_control_param->bits_per_second == ctx->sRCParams.BitsPerSecond)
464 if (rate_control_param->bits_per_second > TOPAZ_H263_MAX_BITRATE) {
466 drv_debug_msg(VIDEO_DEBUG_GENERAL, " bits_per_second(%d) exceeds \
468 rate_control_param->bits_per_second,
    [all...]
lnc_MPEG4ES.c 215 (ctx->sRCParams.BitsPerSecond != seq_params->bits_per_second))
218 if (seq_params->bits_per_second > TOPAZ_MPEG4_MAX_BITRATE) {
220 drv_debug_msg(VIDEO_DEBUG_GENERAL, " bits_per_second(%d) exceeds \
222 seq_params->bits_per_second,
225 ctx->sRCParams.BitsPerSecond = seq_params->bits_per_second;
443 rate_control_param->bits_per_second);
445 if (rate_control_param->bits_per_second == ctx->sRCParams.BitsPerSecond)
450 if (rate_control_param->bits_per_second > TOPAZ_MPEG4_MAX_BITRATE) {
452 drv_debug_msg(VIDEO_DEBUG_GENERAL, " bits_per_second(%d) exceeds \
454 rate_control_param->bits_per_second,
    [all...]
lnc_H264ES.c 232 (ctx->sRCParams.BitsPerSecond != pSequenceParams->bits_per_second))
238 if (pSequenceParams->bits_per_second > TOPAZ_H264_MAX_BITRATE) {
240 drv_debug_msg(VIDEO_DEBUG_GENERAL, " bits_per_second(%d) exceeds \
242 pSequenceParams->bits_per_second,
245 ctx->sRCParams.BitsPerSecond = pSequenceParams->bits_per_second;
630 if (rate_control_param->bits_per_second > TOPAZ_H264_MAX_BITRATE) {
632 drv_debug_msg(VIDEO_DEBUG_GENERAL, " bits_per_second(%d) exceeds \
634 rate_control_param->bits_per_second,
637 bit_rate = rate_control_param->bits_per_second;
641 rate_control_param->bits_per_second);
    [all...]
  /external/chromium_org/third_party/libva/va/
va_enc_mpeg2.h 119 * bits_per_second may be derived from bit_rate.
122 unsigned int bits_per_second; member in struct:_VAEncSequenceParameterBufferMPEG2
va_enc_h264.h 165 unsigned int bits_per_second; member in struct:_VAEncSequenceParameterBufferH264
  /hardware/intel/common/libmix/videoencoder/
VideoEncoderH263.cpp 58 h263SequenceParam.bits_per_second= mComParams.rcParams.bitRate;
68 LOG_I( "bitrate = %d\n", h263SequenceParam.bits_per_second);
VideoEncoderMP4.cpp 142 mp4SequenceParams.bits_per_second= mComParams.rcParams.bitRate;
158 LOG_I("bitrate = %d\n", mp4SequenceParams.bits_per_second);
VideoEncoderVP8.cpp 91 vp8SeqParam.bits_per_second = mComParams.rcParams.bitRate;
165 misc_rate_ctrl->bits_per_second = mComParams.rcParams.bitRate;
170 misc_rate_ctrl->bits_per_second = mTemporalLayerBitrateFramerate[layer_id].bitRate;
bitstream.h 318 sps_rbsp(&bs, profile, seq_param->bits_per_second, seq_param);
  /external/chromium_org/third_party/webrtc/modules/remote_bitrate_estimator/test/
bwe_test_framework.cc 80 uint32_t bits_per_second() const { function in class:webrtc::testing::bwe::RateCounter
230 uint32_t RateCounterFilter::bits_per_second() const { function in class:webrtc::testing::bwe::RateCounterFilter
231 return rate_counter_->bits_per_second();
247 rate_counter_->bits_per_second() / 1000.0);
256 kbps_stats_.Push(rate_counter_->bits_per_second() / 1000.0);
475 rate_counter_->bits_per_second() / 1000.0);
499 kbps_stats_.Push(rate_counter_->bits_per_second() / 1000.0);
bwe_test_framework.h 228 uint32_t bits_per_second() const;
  /hardware/intel/common/libva/test/encode/
mpeg2enc.c 292 bitstream_put_ui(bs, (seq_param->bits_per_second + 399) / 400, 18); /* the low 18 bits of bit_rate */
308 bitstream_put_ui(bs, ((seq_param->bits_per_second + 399) / 400) >> 18, 12); /* bit_rate_extension */
768 seq_param->bits_per_second = 1024 * ctx->bit_rate; /* use kbps as input */
770 seq_param->bits_per_second = 0x3FFFF * 400;
    [all...]

Completed in 256 milliseconds

1 2