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

1 2 3 4 5 6

  /external/speex/include/speex/
speex_stereo.h 72 void speex_encode_stereo(float *data, int frame_size, SpeexBits *bits);
75 void speex_encode_stereo_int(spx_int16_t *data, int frame_size, SpeexBits *bits);
78 void speex_decode_stereo(float *data, int frame_size, SpeexStereoState *stereo);
81 void speex_decode_stereo_int(spx_int16_t *data, int frame_size, SpeexStereoState *stereo);
speex_echo.h 73 * @param frame_size Number of samples to process at one time (should correspond to 10-20 ms)
77 SpeexEchoState *speex_echo_state_init(int frame_size, int filter_length);
80 * @param frame_size Number of samples to process at one time (should correspond to 10-20 ms)
86 SpeexEchoState *speex_echo_state_init_mc(int frame_size, int filter_length, int nb_mic, int nb_speakers);
145 * @param frame_size Size of the frame to process at ones (counting samples *per* channel)
147 SpeexDecorrState *speex_decorrelate_new(int rate, int channels, int frame_size);
speex_header.h 69 spx_int32_t frame_size; /**< Size of frames */ member in struct:SpeexHeader
  /external/speex/libspeex/
scal.c 60 int frame_size; member in struct:SpeexDecorrState_
81 EXPORT SpeexDecorrState *speex_decorrelate_new(int rate, int channels, int frame_size)
87 st->frame_size = frame_size;
89 st->psy = vorbis_psy_init(rate, 2*frame_size);
90 spx_drft_init(&st->lookup, 2*frame_size);
91 st->wola_mem = speex_alloc(frame_size*sizeof(float));
92 st->curve = speex_alloc(frame_size*sizeof(float));
94 st->y = speex_alloc(frame_size*sizeof(float));
96 st->buff = speex_alloc(channels*2*frame_size*sizeof(float))
    [all...]
mdf.c 133 int frame_size; /**< Number of samples processed each time */ member in struct:SpeexEchoState_
402 EXPORT SpeexEchoState *speex_echo_state_init(int frame_size, int filter_length)
404 return speex_echo_state_init_mc(frame_size, filter_length, 1, 1);
407 EXPORT SpeexEchoState *speex_echo_state_init_mc(int frame_size, int filter_length, int nb_mic, int nb_speakers)
424 st->frame_size = frame_size;
425 st->window_size = 2*frame_size;
427 M = st->M = (filter_length+st->frame_size-1)/frame_size;
434 st->spec_average = DIV32_16(SHL32(EXTEND32(st->frame_size), 15), st->sampling_rate)
    [all...]
  /external/libvpx/libvpx/vpx_scale/generic/
yv12config.c 51 const int frame_size = yplane_size + 2 * uvplane_size; local
54 ybf->buffer_alloc = vpx_memalign(32, frame_size);
55 ybf->buffer_alloc_sz = frame_size;
58 if (!ybf->buffer_alloc || ybf->buffer_alloc_sz < frame_size)
84 ybf->frame_size = frame_size;
146 const int frame_size = yplane_size + 2 * uvplane_size + local
149 const int frame_size = yplane_size + 2 * uvplane_size; local
152 ybf->buffer_alloc = vpx_memalign(32, frame_size);
153 ybf->buffer_alloc_sz = frame_size;
    [all...]
  /external/chromium_org/chrome/browser/ui/gtk/
titlebar_throb_animation.cc 25 int frame_size = frame_strip.height(); local
26 size_t num_frames = frame_strip.width() / frame_size;
31 i * frame_size, 0, frame_size, frame_size);
  /device/lge/mako/camera/QCamera/HAL/core/inc/
QCameraHWI_Mem.h 47 int frame_size,
72 int frame_size,
81 int frame_size, int cbcr_offset,
97 int frame_size, int cbcr_offset,
  /device/lge/mako/camera/
QCameraHWI_Mem.h 46 int frame_size,
71 int frame_size,
80 int frame_size, int cbcr_offset,
96 int frame_size, int cbcr_offset,
  /external/libvpx/libvpx/test/
vp8_decrypt_test.cc 56 vpx_codec_err_t res = decoder.DecodeFrame(video.cxdata(), video.frame_size());
63 std::vector<uint8_t> encrypted(video.frame_size());
64 encrypt_buffer(video.cxdata(), &encrypted[0], video.frame_size());
69 res = decoder.DecodeFrame(video.cxdata(), video.frame_size());
  /external/chromium_org/third_party/opus/src/celt/
opus_custom_demo.c 51 opus_int32 frame_size, channels, rate; local
72 frame_size = atoi(argv[3]);
73 mode = opus_custom_mode_create(rate, frame_size, NULL);
128 in = (opus_int16*)malloc(frame_size*channels*sizeof(opus_int16));
129 out = (opus_int16*)malloc(frame_size*channels*sizeof(opus_int16));
134 err = fread(in, sizeof(short), frame_size*channels, fin);
137 len = opus_custom_encode(enc, in, frame_size, data, bytes_per_packet);
168 ret = opus_custom_decode(dec, NULL, len, out, frame_size);
170 ret = opus_custom_decode(dec, data, len, out, frame_size);
200 rmsd = sqrt(rmsd/(1.0*frame_size*channels*count))
    [all...]
modes.c 89 static opus_int16 *compute_ebands(opus_int32 Fs, int frame_size, int res, int *nbEBands)
95 if (Fs == 400*(opus_int32)frame_size)
140 if (eBands[*nbEBands] > frame_size)
141 eBands[*nbEBands] = frame_size;
223 CELTMode *opus_custom_mode_create(opus_int32 Fs, int frame_size, int *error)
246 (frame_size<<j) == static_mode_list[i]->shortMdctSize*static_mode_list[i]->nbShortMdcts)
270 if (frame_size < 40 || frame_size > 1024 || frame_size%2!=0)
277 if ((opus_int32)frame_size*1000 < Fs
    [all...]
  /external/chromium_org/third_party/opus/src/include/
opus_custom.h 116 * @param [in] frame_size <tt>int</tt>: Number of samples (per channel) to encode in each
121 OPUS_CUSTOM_EXPORT OPUS_WARN_UNUSED_RESULT OpusCustomMode *opus_custom_mode_create(opus_int32 Fs, int frame_size, int *error);
185 * frame_size samples per channel.
186 * @param [in] frame_size <tt>int</tt>: Number of samples per frame of input signal
198 int frame_size,
206 * There must be exactly frame_size samples per channel.
207 * @param [in] frame_size <tt>int</tt>: Number of samples per frame of input signal
219 int frame_size,
286 * is frame_size*channels*sizeof(float)
287 * @param [in] frame_size Number of samples per channel of available space in *pcm
    [all...]
opus_multistream.h 324 * <code>frame_size*channels</code>
326 * @param frame_size <tt>int</tt>: Number of samples per channel in the input
352 int frame_size,
369 * <code>frame_size*channels</code>
371 * @param frame_size <tt>int</tt>: Number of samples per channel in the input
397 int frame_size,
538 * <code>frame_size*channels</code>
540 * @param frame_size <tt>int</tt>: The number of samples per channel of
545 * or FEC (decode_fec=1), then frame_size needs to be exactly
548 * next incoming packet. For the PLC and FEC cases, frame_size
    [all...]
  /external/chromium_org/third_party/opus/src/src/
opus_multistream.c 239 int frame_size
249 int frame_size,
267 /* Validate frame_size before using it to allocate stack space.
269 if (400*frame_size != Fs && 200*frame_size != Fs &&
270 100*frame_size != Fs && 50*frame_size != Fs &&
271 25*frame_size != Fs && 50*frame_size != 3*Fs)
276 ALLOC(buf, 2*frame_size, opus_val16)
    [all...]
opus_decoder.c 65 int frame_size; member in struct:OpusDecoder
131 st->frame_size = Fs/400;
197 opus_int32 len, opus_val16 *pcm, int frame_size, int decode_fec)
227 if (frame_size < F2_5)
232 /* Limit frame_size to avoid excessive stack allocations. */
233 frame_size = IMIN(frame_size, st->Fs/25*3);
239 frame_size = IMIN(frame_size, st->frame_size);
    [all...]
opus_demo.c 204 int frame_size, channels; local
298 frame_size = sampling_rate/50;
340 frame_size = sampling_rate/400;
342 frame_size = sampling_rate/200;
344 frame_size = sampling_rate/100;
346 frame_size = sampling_rate/50;
348 frame_size = sampling_rate/25;
350 frame_size = 3*sampling_rate/50;
548 bandwidth_string, frame_size);
561 frame_size = newsize
    [all...]
  /external/chromium_org/media/cdm/ppapi/
fake_cdm_video_decoder.cc 67 int frame_size = u_offset + uv_stride * uv_rows + kPlanePadding; local
69 decoded_frame->SetFrameBuffer(host_->Allocate(frame_size));
70 decoded_frame->FrameBuffer()->SetSize(frame_size);
86 color, frame_size);
  /external/chromium_org/third_party/libjingle/source/talk/sound/
alsasoundsystem.h 91 size_t frame_size,
98 size_t frame_size,
105 size_t frame_size,
alsasoundsystem.cc 91 size_t frame_size,
97 frame_size_(frame_size),
230 size_t frame_size() { function in class:cricket::AlsaStream
253 size_t frame_size,
257 : stream_(alsa, handle, frame_size, wait_timeout_ms, flags, freq),
305 size_t size = avail * stream_.frame_size();
326 read * stream_.frame_size(),
359 size_t frame_size,
363 : stream_(alsa, handle, frame_size, wait_timeout_ms, flags, freq) {
382 if (size % stream_.frame_size() != 0)
    [all...]
  /external/srec/srec/cfront/
wav_acc.c 46 void create_sample_buffer(wave_info *wave, int frame_size, int window_size)
49 ASSERT(frame_size > 0);
50 ASSERT(window_size >= frame_size);
54 wave->frame_size = frame_size;
56 log_report("window %d frame %d\n", window_size, frame_size);
71 wave->frame_size = 0;
  /external/valgrind/main/coregrind/m_debuginfo/
priv_readdwarf.h 68 UChar* frame_image, SizeT frame_size, Addr frame_avma,
  /external/webrtc/src/common_audio/vad/
vad_filterbank.h 109 * - frame_size : Frame size, in number of samples
119 int frame_size,
  /hardware/samsung_slsi/exynos5/libexynosutils/
exynos5_format_v4l2.c 244 unsigned int FRAME_SIZE(
249 unsigned int frame_size = 0; local
255 frame_size = GET_16BPP_FRAME_SIZE(width, height);
260 frame_size = GET_24BPP_FRAME_SIZE(width, height);
268 frame_size = GET_32BPP_FRAME_SIZE(width, height);
277 frame_size = size + 2 * ALIGN(width >> 1, 8) * ALIGN(height >> 1, 8);
285 frame_size = size + ALIGN(ALIGN(width, 16) * ALIGN(height >> 1, 8), 2048);
289 frame_size = ALIGN_TO_8KB(ALIGN_TO_128B(width) * ALIGN_TO_32B(height))
305 frame_size = GET_16BPP_FRAME_SIZE(width, height);
314 return frame_size;
    [all...]
  /device/lge/mako/camera/QCamera/HAL/core/src/
QCameraHWI_Mem.cpp 53 int frame_size,
106 int frame_size,
110 mFrameSize(frame_size),
135 int frame_size,
139 frame_size,
146 num_buffers, frame_size, buffer_size);
159 int frame_size,
170 CAMERA_HAL_UNUSED(frame_size);
235 int frame_size, int cbcr_offset,
237 MemPool(buffer_size,num_buffers,frame_size,name)
    [all...]

Completed in 276 milliseconds

1 2 3 4 5 6