HomeSort by relevance Sort by last modified time
    Searched refs:num_frames (Results 1 - 19 of 19) sorted by null

  /frameworks/ex/variablespeed/jni/
ring_buffer.h 58 // @param num_frames number of frames to read.
60 void Copy(int reader, float* destination, int num_frames) const;
64 // @param num_frames number of frames to write.
65 void Write(const float* samples, int num_frames);
77 // Returns a pointer to num_frames x num_channels contiguous samples for
83 // @param num_frames number of frames to read.
84 // @returns pointer to a continuous buffer containing num_frames.
85 float* GetPointer(int reader, int num_frames);
92 // @param source pointer to a continuous buffer containing num_frames.
93 // @param num_frames number of frames to copy back to the ring buffer
    [all...]
ring_buffer.cc 82 void RingBuffer::Write(const float* samples, int num_frames) {
83 if (!num_frames) {
86 if (head_ + num_frames <= size_) {
88 num_frames * num_channels_ * sizeof(samples[0]));
89 head_ += num_frames;
94 head_ = num_frames - overhead;
98 head_logical_ += num_frames;
101 void RingBuffer::Copy(int reader, float* destination, int num_frames) const {
103 if (pos + num_frames <= size_) {
105 num_channels_ * num_frames * sizeof(destination[0]))
    [all...]
sola_time_scaler.cc 33 int num_frames) {
37 num_frames *= num_channels_;
38 while (num_frames-- > 0) {
50 virtual int Correlate(const float*, const float*, int num_frames) {
51 return num_frames * num_channels_;
212 int SolaTimeScaler::InjectSamples(float* buffer, int num_frames) {
216 num_frames = min(input_limit(), num_frames);
217 if (!num_frames) {
222 input_buffer_->Write(buffer, num_frames);
    [all...]
sola_time_scaler.h 56 // @param num_frames number of input frames (that is to say, number of
58 // @param returns a correlation score in the range zero to num_frames
60 int num_frames);
107 // @param num_frames number of frames (num_samples / num_channels)
109 int InjectSamples(float* buffer, int num_frames);
113 // @param num_frames maximum desired number of frames
115 int RetrieveSamples(float* buffer, int num_frames);
  /external/srec/srec/include/
utteranc.h 243 int load_utb_data(file_utterance_info *utt, int num_frames, int do_skip);
244 int load_short_data(file_utterance_info *utt, int num_frames, int do_skip);
245 int save_utb_data(file_utterance_info *utt, int num_frames);
246 int save_short_data(file_utterance_info *utt, int num_frames);
  /external/webp/include/webp/
demux.h 128 int num_frames; // equivalent to WEBP_FF_FRAME_COUNT. member in struct:WebPIterator
  /system/core/charger/
charger.c 105 int num_frames; member in struct:animation
177 .num_frames = ARRAY_SIZE(batt_anim_frames),
658 if (batt_anim->num_frames != 0) {
673 if (batt_anim->capacity < 0 || batt_anim->num_frames == 0)
721 if (batt_cap >= 0 && batt_anim->num_frames != 0) {
725 for (i = 1; i < batt_anim->num_frames; i++) {
748 if (batt_anim->num_frames == 0 || batt_anim->capacity < 0) {
766 while (batt_anim->cur_frame < batt_anim->num_frames &&
769 if (batt_anim->cur_frame >= batt_anim->num_frames) {
987 for (i = 0; i < charger->batt_anim->num_frames; i++)
    [all...]
  /external/srec/srec/clib/
swicms.c 518 int num_frames = swicms->cached_num_frames; local
536 if (speech_end < num_frames)
539 cache_end = num_frames;
544 if (num_frames == 0 || speech_end == 0 || speech_start == speech_end || speech_end == MAXframeID)
548 speech_start, speech_end, num_frames);
555 backgr_cache_end = (num_frames - num_frames % swicms->cache_resolution) / swicms->cache_resolution;
fpi_tgt.c 725 int len, /* count= 0, */ num_frames = 0; local
763 num_frames++;
780 return (num_frames);
  /external/chromium/net/spdy/
spdy_test_util.h 331 int CombineFrames(const spdy::SpdyFrame** frames, int num_frames,
spdy_test_util.cc     [all...]
  /external/qemu/distrib/sdl-1.2.15/src/video/ps3/
SDL_ps3video.c 234 if (res.num_frames < 2) {
  /external/chromium/chrome/browser/ui/gtk/
browser_titlebar.cc 901 size_t num_frames = frame_strip->width() \/ frame_size; local
    [all...]
  /external/chromium/net/tools/testserver/
testserver.py     [all...]
  /external/webp/src/demux/
demux.c 789 iter->num_frames = dmux->num_frames_;
  /device/lge/mako/camera/QCamera/stack/mm-camera-interface/src/
mm_camera_channel.c     [all...]
  /device/lge/mako/camera/
QCamera_Intf.h 180 int num_frames; member in struct:__anon1766
    [all...]
QCameraHWI_Still.cpp     [all...]
  /device/lge/mako/camera/QCamera/HAL/core/src/
QCameraHWI_Still.cpp     [all...]

Completed in 900 milliseconds