HomeSort by relevance Sort by last modified time
    Searched defs:rate (Results 76 - 100 of 141) sorted by null

1 2 34 5 6

  /external/chromium_org/media/blink/
webmediaplayer_impl.cc 71 // Limits the range of playback rate.
346 void WebMediaPlayerImpl::setRate(double rate) {
347 DVLOG(1) << __FUNCTION__ << "(" << rate << ")"; local
352 if (rate < 0.0)
356 if (rate != 0.0) {
357 if (rate < kMinRate)
358 rate = kMinRate;
359 else if (rate > kMaxRate)
360 rate = kMaxRate;
367 playback_rate_ = rate;
    [all...]
  /external/chromium_org/third_party/lcov/bin/
genhtml 79 # Specify coverage rate limits (in %) for classifying file entries
80 # HI: $hi_limit <= rate <= 100 graph color: green
81 # MED: $med_limit <= rate < $hi_limit graph color: orange
82 # LO: 0 <= rate < $med_limit graph color: red
208 sub rate($$;$$$);
647 return rate($hit, $found, "% ($hit of $found $name)");
663 info("Overall coverage rate:\n");
5778 sub rate($$;$$$) subroutine
    [all...]
lcov 143 sub rate($$;$$$);
4282 sub rate($$;$$$) subroutine
    [all...]
  /external/chromium_org/third_party/libvpx/source/libvpx/vp8/encoder/
encodeframe.c 1180 int rate; local
1228 int rate; local
    [all...]
pickinter.c 147 int rate; local
158 rate = mode_costs[mode];
163 this_rd = RDCOST(x->rdmult, x->rddiv, rate, distortion);
167 *bestrate = rate;
183 int *Rate,
228 *Rate = cost;
590 int rate; local
813 pick_intra4x4mby_modes(x, &rate, &distortion2);
821 rate2 += rate;
1265 int rate, best_rate = 0, distortion, best_sse; local
    [all...]
  /external/chromium_org/third_party/libvpx/source/libvpx/vp9/encoder/
vp9_encodemb.c 68 int rate; member in struct:vp9_token_state
136 tokens[eob][0].rate = 0;
157 rate0 = tokens[next][0].rate;
158 rate1 = tokens[next][1].rate;
175 tokens[i][0].rate = base_bits + (best ? rate1 : rate0);
183 rate0 = tokens[next][0].rate;
184 rate1 = tokens[next][1].rate;
231 tokens[i][1].rate = base_bits + (best ? rate1 : rate0);
248 tokens[next][0].rate +=
253 tokens[next][1].rate +
    [all...]
vp9_pickmode.c 213 int rate; local
245 dc_quant >> 3, &rate, &dist);
246 *out_rate_sum = rate >> 1;
250 ac_quant >> 3, &rate, &dist);
251 *out_rate_sum += rate;
278 int *rate, int64_t *dist) {
289 // Set a maximum for threshold to avoid big PSNR loss in low bit rate
341 *rate = cpi->inter_mode_cost[mbmi->mode_context[ref_frame]]
344 // More on this part of rate
345 // rate += vp9_cost_bit(vp9_get_skip_prob(cm, xd), 1)
363 int rate; member in struct:estimate_block_intra_args
381 int rate; local
436 int rate = INT_MAX; local
    [all...]
  /external/chromium_org/third_party/opus/src/src/
opus_multistream_encoder.c 221 int len, int overlap, int channels, int rate, opus_copy_channel_in_func copy_channel_in
238 upsample = resampling_factor(rate);
596 opus_int32 *rate,
621 /* Coupled streams get twice the mono rate after the first 20 kb/s. */
658 rate[i] = stream_offset+(channel_rate*coupled_ratio>>8);
660 rate[i] = stream_offset+channel_rate;
662 rate[i] = lfe_offset+(channel_rate*lfe_ratio>>8);
1005 opus_int32 rate; local
1012 opus_encoder_ctl(enc, request, &rate);
1013 *value += rate;
    [all...]
  /external/chromium_org/third_party/speex/libspeex/
nb_celp.c 494 spx_int32_t rate; local
495 speex_encoder_ctl(state, SPEEX_GET_BITRATE, &rate);
496 if (rate > st->vbr_max)
498 rate = st->vbr_max;
499 speex_encoder_ctl(state, SPEEX_SET_BITRATE, &rate);
583 /*If we use low bit-rate pitch mode, transmit open-loop pitch*/
766 /* Low bit-rate pitch handling */
1618 spx_int32_t rate, target; local
1672 spx_int32_t rate, target; local
    [all...]
  /external/chromium_org/third_party/webrtc/base/
virtualsocket_unittest.cc 28 // Sends at a constant rate but with random packet sizes.
32 done(false), rate(rt), count(0) {
39 return 1000 * size / rate;
50 uint32 size = rate * delay / 1000;
66 uint32 rate; // bytes per second member in struct:Sender
    [all...]
  /external/chromium_org/third_party/webrtc/modules/video_coding/main/source/
jitter_buffer.cc 342 float rate = 0.5f + ((incoming_frame_count_ * 1000.0f) / diff); local
343 if (rate < 1.0f) {
344 rate = 1.0f;
347 // Calculate frame rate
348 // Let r be rate.
353 *framerate = (incoming_frame_rate_ + static_cast<unsigned int>(rate)) / 2;
354 incoming_frame_rate_ = static_cast<unsigned int>(rate);
356 // Calculate bit rate
    [all...]
  /external/chromium_org/v8/src/
compiler.cc 1037 HistogramTimer* rate = info->is_eval() local
    [all...]
  /external/esd/include/
esd.h 22 /* default sample rate for the EsounD server */
65 ESD_PROTO_SERVER_INFO, /* get server info (ver, sample rate, format) */
129 /* rate, format = (bits | channels | stream | func) */
145 int esd_play_stream( esd_format_t format, int rate,
147 int esd_play_stream_fallback( esd_format_t format, int rate,
149 int esd_monitor_stream( esd_format_t format, int rate,
151 /* int esd_monitor_stream_fallback( esd_format_t format, int rate ); */
152 int esd_record_stream( esd_format_t format, int rate,
154 int esd_record_stream_fallback( esd_format_t format, int rate,
156 int esd_filter_stream( esd_format_t format, int rate,
201 int rate; \/* sample rate *\/ member in struct:esd_server_info
212 int rate; \/* sample rate *\/ member in struct:esd_player_info
227 int rate; \/* sample rate *\/ member in struct:esd_sample_info
    [all...]
  /external/libopus/src/
opus_multistream_encoder.c 221 int len, int overlap, int channels, int rate, opus_copy_channel_in_func copy_channel_in
238 upsample = resampling_factor(rate);
596 opus_int32 *rate,
621 /* Coupled streams get twice the mono rate after the first 20 kb/s. */
658 rate[i] = stream_offset+(channel_rate*coupled_ratio>>8);
660 rate[i] = stream_offset+channel_rate;
662 rate[i] = lfe_offset+(channel_rate*lfe_ratio>>8);
1005 opus_int32 rate; local
1012 opus_encoder_ctl(enc, request, &rate);
1013 *value += rate;
    [all...]
  /external/libvpx/libvpx/vp8/encoder/
encodeframe.c 1167 int rate; local
1215 int rate; local
    [all...]
pickinter.c 147 int rate; local
158 rate = mode_costs[mode];
163 this_rd = RDCOST(x->rdmult, x->rddiv, rate, distortion);
167 *bestrate = rate;
183 int *Rate,
228 *Rate = cost;
587 int rate; local
803 pick_intra4x4mby_modes(x, &rate, &distortion2);
811 rate2 += rate;
1252 int rate, best_rate = 0, distortion, best_sse; local
    [all...]
  /external/libvpx/libvpx/vp9/encoder/
vp9_encodemb.c 69 int rate; member in struct:vp9_token_state
146 tokens[eob][0].rate = 0;
168 rate0 = tokens[next][0].rate;
169 rate1 = tokens[next][1].rate;
188 tokens[i][0].rate = base_bits + (best ? rate1 : rate0);
196 rate0 = tokens[next][0].rate;
197 rate1 = tokens[next][1].rate;
244 tokens[i][1].rate = base_bits + (best ? rate1 : rate0);
261 tokens[next][0].rate +=
266 tokens[next][1].rate +
    [all...]
  /development/ndk/platforms/android-3/include/linux/
fd.h 30 rate, member in struct:floppy_struct
33 #define FD_SIZECODE(floppy) (((((floppy)->rate&FD_SIZECODEMASK)>> 3)+ 2) %8)
34 #define FD_SECTSIZE(floppy) ( (floppy)->rate & FD_2M ? 512 : 128 << FD_SIZECODE(floppy) )
240 unsigned char rate; member in struct:floppy_raw_cmd
  /development/ndk/platforms/android-L/include/linux/
fd.h 40 rate, member in struct:floppy_struct
44 #define FD_SIZECODE(floppy) (((((floppy)->rate&FD_SIZECODEMASK)>> 3)+ 2) %8)
45 #define FD_SECTSIZE(floppy) ( (floppy)->rate & FD_2M ? 512 : 128 << FD_SIZECODE(floppy) )
236 unsigned char rate; member in struct:floppy_raw_cmd
  /external/bluetooth/bluedroid/audio_a2dp_hw/
audio_a2dp_hw.c 92 uint32_t rate; member in struct:a2dp_config
190 return bytes*(1000000/(chan_count*2))/cfg.rate;
387 common->cfg.rate = sample_rate;
389 INFO("got config %d %d", common->cfg.format, common->cfg.rate);
603 DEBUG("rate %" PRIu32,out->common.cfg.rate);
605 return out->common.cfg.rate;
608 static int out_set_sample_rate(struct audio_stream *stream, uint32_t rate)
612 DEBUG("out_set_sample_rate : %" PRIu32, rate);
614 if (rate != AUDIO_STREAM_DEFAULT_RATE
    [all...]
  /external/chromium_org/media/formats/mp4/
box_definitions.h 110 int32 rate; member in struct:media::mp4::MovieHeader
  /external/chromium_org/third_party/leveldatabase/src/db/
db_bench.cc 246 // Rate is computed on actual elapsed time, not the sum of per-thread
249 char rate[100]; local
250 snprintf(rate, sizeof(rate), "%6.1f MB/s",
252 extra = rate;
  /external/chromium_org/third_party/webrtc/modules/rtp_rtcp/interface/
rtp_rtcp_defines.h 37 uint32_t rate; member in struct:webrtc::AudioPayload
265 const uint32_t rate) = 0;
336 const uint32_t rate) OVERRIDE {
  /external/fio/
backend.c 138 * Check if we are above the minimum rate given.
146 unsigned long rate; local
169 * if rate blocks is set, sample is running
176 if (td->o.rate[ddir]) {
178 * check bandwidth specified rate
181 log_err("%s: min rate %u not met\n", td->o.name,
186 rate = ((bytes - td->rate_bytes[ddir]) * 1000) / spent;
188 rate = 0;
190 if (rate < ratemin ||
192 log_err("%s: min rate %u not met, got
    [all...]
stat.c 1794 unsigned long spent, rate; local
    [all...]

Completed in 1373 milliseconds

1 2 34 5 6