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

1 2

  /external/chromium_org/media/audio/
simple_sources.cc 41 int max_frames = cap_ > 0 ? local
43 for (int i = 0; i < max_frames; ++i)
47 max_frames * sizeof(*audio_bus->channel(i)));
49 return max_frames;
  /external/srec/srec/crec/
srec_initialize.c 79 int max_frames,
112 rec->max_frames = (frameID)max_frames;
113 rec->best_model_cost_for_frame = (costdata*)CALLOC_CLR(max_frames, sizeof(costdata), "search.srec.best_model_cost_for_frame");
114 rec->word_lattice = allocate_word_lattice((frameID)max_frames);
147 int max_frames,
157 if (check_parameter_range(max_frames, 1, MAXframeID, "max_frames"))
187 rec->cost_offset_for_frame = (costdata*)CALLOC_CLR(max_frames, sizeof(costdata), "search.srec.current_best_costs");
188 rec->accumulated_cost_offset = (bigcostdata*)CALLOC_CLR(max_frames, sizeof(bigcostdata), "search.srec.accumulated_cost_offset")
    [all...]
word_lattice.c 54 srec_word_lattice *allocate_word_lattice(frameID max_frames)
59 wl->max_frames = max_frames;
60 wl->words_for_frame = (wtokenID*) CALLOC_CLR(max_frames, sizeof(wtokenID), "search.word_lattice.words");
62 wl->whether_sorted = (asr_int16_t*)CALLOC_CLR(max_frames, sizeof(asr_int16_t), "search.word_lattice.sflag");
77 for (ifr = 0; ifr < wl->max_frames; ifr++)
103 if (frame >= wl->max_frames)
543 ASSERT(frame < wl->max_frames);
srec_eosd.c 115 else if (rec->current_search_frame >= rec->word_lattice->max_frames - 1
118 /* here we will need to differentiate max_frames from
  /external/chromium_org/media/base/
audio_fifo.h 43 int max_frames() const { return max_frames_; } function in class:media::AudioFifo
audio_fifo.cc 71 GetSizes(write_pos_, max_frames(), source_size, &append_size, &wrap_size);
92 DCHECK_LE(frames(), max_frames());
93 write_pos_ = UpdatePos(write_pos_, source_size, max_frames());
113 GetSizes(read_pos_, max_frames(), frames_to_consume,
134 read_pos_ = UpdatePos(read_pos_, frames_to_consume, max_frames());
  /packages/apps/Camera/jni/feature_mos/src/mosaic/
Mosaic.cpp 37 max_frames = 200;
79 frames = new MosaicFrame *[max_frames];
80 rframes = new MosaicFrame *[max_frames];
91 for(int i=0; i<max_frames; i++)
97 owned_frames = new ImageType[max_frames];
102 LOGV("Max num frames %d", max_frames);
160 if (frames_size >= max_frames)
163 "Increase maximum number of frames (-f <max_frames>) to avoid this");
Mosaic.h 182 int max_frames; member in class:Mosaic
  /packages/apps/Camera2/jni/feature_mos/src/mosaic/
Mosaic.cpp 37 max_frames = 200;
79 frames = new MosaicFrame *[max_frames];
80 rframes = new MosaicFrame *[max_frames];
91 for(int i=0; i<max_frames; i++)
97 owned_frames = new ImageType[max_frames];
102 LOGV("Max num frames %d", max_frames);
160 if (frames_size >= max_frames)
163 "Increase maximum number of frames (-f <max_frames>) to avoid this");
Mosaic.h 182 int max_frames; member in class:Mosaic
  /packages/apps/LegacyCamera/jni/feature_mos/src/mosaic/
Mosaic.cpp 37 max_frames = 200;
75 frames = new MosaicFrame *[max_frames];
76 rframes = new MosaicFrame *[max_frames];
87 for(int i=0; i<max_frames; i++)
97 LOGV("Max num frames %d", max_frames);
147 if (frames_size >= max_frames)
150 "Increase maximum number of frames (-f <max_frames>) to avoid this");
Mosaic.h 182 int max_frames; member in class:Mosaic
  /external/libvpx/libvpx/vp9/encoder/
vp9_temporal_filter.c 372 int max_frames = cpi->active_arnr_frames; local
383 if (frames_to_blur_backward >= max_frames)
384 frames_to_blur_backward = max_frames - 1;
394 if (frames_to_blur_forward >= max_frames)
395 frames_to_blur_forward = max_frames - 1;
412 // When max_frames is even we have 1 more frame backward than forward
413 if (frames_to_blur_forward > (max_frames - 1) / 2)
414 frames_to_blur_forward = ((max_frames - 1) / 2);
416 if (frames_to_blur_backward > (max_frames / 2))
417 frames_to_blur_backward = (max_frames / 2)
    [all...]
  /external/libvpx/libvpx/vp8/encoder/
temporal_filter.c 447 int max_frames = cpi->active_arnr_frames; local
460 if (frames_to_blur_backward >= max_frames)
461 frames_to_blur_backward = max_frames - 1;
471 if (frames_to_blur_forward >= max_frames)
472 frames_to_blur_forward = max_frames - 1;
489 /* When max_frames is even we have 1 more frame backward than forward */
490 if (frames_to_blur_forward > (max_frames - 1) / 2)
491 frames_to_blur_forward = ((max_frames - 1) / 2);
493 if (frames_to_blur_backward > (max_frames / 2))
494 frames_to_blur_backward = (max_frames / 2)
    [all...]
  /external/srec/srec/include/
srec.h 130 frameID max_frames; member in struct:__anon28356
172 1 cost_offset_for_frame MAX_FRAMES
173 1 accumulated_cost_offset_for_frame MAX_FRAMES
263 frameID max_frames; member in struct:srec_t
298 frameID max_frames; member in struct:__anon28357
299 costdata* cost_offset_for_frame; /* size max_frames, keeps track of
word_lattice.h 49 srec_word_lattice *allocate_word_lattice(frameID max_frames);
c42mul.h 78 int max_frames,
  /external/chromium_org/ui/aura/bench/
bench_main.cc 89 explicit BenchCompositorObserver(int max_frames)
92 max_frames_(max_frames) {
179 WebGLBench(Layer* parent, Compositor* compositor, int max_frames)
180 : BenchCompositorObserver(max_frames),
266 int max_frames)
267 : BenchCompositorObserver(max_frames),
  /external/compiler-rt/lib/sanitizer_common/
sanitizer_symbolizer.h 65 // Fills at most "max_frames" elements of "frames" with descriptions
69 uptr SymbolizeCode(uptr address, AddressInfo *frames, uptr max_frames)
sanitizer_symbolizer_libcdep.cc 267 uptr SymbolizeCode(uptr addr, AddressInfo *frames, uptr max_frames) {
268 if (max_frames == 0)
285 for (frame_id = 0; frame_id < max_frames; frame_id++) {
462 uptr SymbolizeCode(uptr address, AddressInfo *frames, uptr max_frames) {
463 return symbolizer.SymbolizeCode(address, frames, max_frames);
  /external/srec/srec/ca/
rec_basi.c 90 hRecInput->max_frames,
102 hRecInput->max_frames);
  /external/chromium_org/content/renderer/media/
webaudio_capturer_source.cc 89 int available = fifo_->max_frames() - fifo_->frames();
webrtc_local_audio_renderer.cc 71 loopback_fifo_->max_frames()) {
  /external/chromium_org/media/tools/media_bench/
media_bench.cc 163 int max_frames = 0; local
166 !base::StringToInt(frames_opt, &max_frames)) {
167 max_frames = 0;
513 if (max_frames && (frames >= max_frames))
  /external/chromium_org/media/test/ffmpeg_tests/
ffmpeg_tests.cc 102 int max_frames = 0; local
406 if (max_frames && (frames >= max_frames))

Completed in 2032 milliseconds

1 2