Searched defs:frame_size (Results 26 - 50 of 71) sorted by relevance

123

/external/libvpx/libvpx/test/
H A Dwebm_video_source.h166 virtual const unsigned int frame_size() const { return buf_sz_; } function in class:libvpx_test::WebMVideoSource
/external/qemu/distrib/sdl-1.2.15/src/audio/alsa/
H A DSDL_alsa_audio.c311 const int frame_size = (((int) (this->spec.format & 0xFF)) / 8) * this->spec.channels; local
337 sample_buf += status * frame_size;
/external/speex/libspeex/
H A Dsb_celp.h48 int frame_size; /**< Length of high-band frames*/ member in struct:SBEncState
103 int frame_size; member in struct:SBDecState
H A Dscal.c60 int frame_size; member in struct:SpeexDecorrState_
81 EXPORT SpeexDecorrState *speex_decorrelate_new(int rate, int channels, int frame_size) argument
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*sizeo
[all...]
/external/valgrind/main/coregrind/m_sigframe/
H A Dsigframe-arm-linux.c283 UInt frame_size; local
294 frame_size = sizeof(*frame);
301 frame_size = sizeof(*frame);
342 frame_size + VG_STACK_REDZONE_SZB );
H A Dsigframe-mips32-linux.c317 UInt frame_size; local
329 frame_size = sizeof(*frame);
338 frame_size = sizeof(*frame);
385 VG_TRACK(die_mem_stack_signal, sp, frame_size);
/external/webrtc/src/common_audio/vad/
H A Dvad_filterbank.c130 int frame_size,
133 // We expect |frame_size| to be 80, 160 or 240 samples, which corresponds to
140 int length = frame_size;
156 length = WEBRTC_SPL_RSHIFT_W16(frame_size, 1);
176 length = WEBRTC_SPL_RSHIFT_W16(frame_size, 1);
128 WebRtcVad_get_features(VadInstT* inst, int16_t* in_vector, int frame_size, int16_t* out_vector) argument
/external/chromium_org/media/audio/mac/
H A Daudio_synchronized_mac.cc287 UInt32 frame_size = hardware_buffer_size_; local
297 sizeof(frame_size),
298 &frame_size);
345 UInt32 frame_size = hardware_buffer_size_; local
355 sizeof(frame_size),
356 &frame_size);
/external/chromium_org/third_party/opus/src/src/
H A Dopus_demo.c204 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
[all...]
H A Dopus_decoder.c65 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);
196 opus_decode_frame(OpusDecoder *st, const unsigned char *data, opus_int32 len, opus_val16 *pcm, int frame_size, int decode_fec) argument
697 opus_decode_native(OpusDecoder *st, const unsigned char *data, opus_int32 len, opus_val16 *pcm, int frame_size, int decode_fec, int self_delimited, int *packet_offset) argument
800 opus_decode(OpusDecoder *st, const unsigned char *data, opus_int32 len, opus_val16 *pcm, int frame_size, int decode_fec) argument
807 opus_decode_float(OpusDecoder *st, const unsigned char *data, opus_int32 len, float *pcm, int frame_size, int decode_fec) argument
829 opus_decode(OpusDecoder *st, const unsigned char *data, opus_int32 len, opus_int16 *pcm, int frame_size, int decode_fec) argument
854 opus_decode_float(OpusDecoder *st, const unsigned char *data, opus_int32 len, opus_val16 *pcm, int frame_size, int decode_fec) argument
[all...]
H A Dopus_multistream.c239 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_val1
244 opus_multistream_encode_native( OpusMSEncoder *st, opus_copy_channel_in_func copy_channel_in, const void *pcm, int frame_size, unsigned char *data, opus_int32 max_data_bytes ) argument
378 opus_multistream_encode( OpusMSEncoder *st, const opus_val16 *pcm, int frame_size, unsigned char *data, opus_int32 max_data_bytes ) argument
391 opus_multistream_encode_float( OpusMSEncoder *st, const float *pcm, int frame_size, unsigned char *data, opus_int32 max_data_bytes ) argument
406 opus_multistream_encode_float( OpusMSEncoder *st, const opus_val16 *pcm, int frame_size, unsigned char *data, opus_int32 max_data_bytes ) argument
419 opus_multistream_encode( OpusMSEncoder *st, const opus_int16 *pcm, int frame_size, unsigned char *data, opus_int32 max_data_bytes ) argument
695 opus_multistream_decode_native( OpusMSDecoder *st, const unsigned char *data, opus_int32 len, void *pcm, opus_copy_channel_out_func copy_channel_out, int frame_size, int decode_fec ) argument
866 opus_multistream_decode( OpusMSDecoder *st, const unsigned char *data, opus_int32 len, opus_int16 *pcm, int frame_size, int decode_fec ) argument
880 opus_multistream_decode_float(OpusMSDecoder *st, const unsigned char *data, opus_int32 len, float *pcm, int frame_size, int decode_fec) argument
890 opus_multistream_decode(OpusMSDecoder *st, const unsigned char *data, opus_int32 len, opus_int16 *pcm, int frame_size, int decode_fec) argument
897 opus_multistream_decode_float( OpusMSDecoder *st, const unsigned char *data, opus_int32 len, float *pcm, int frame_size, int decode_fec ) argument
[all...]
/external/chromium_org/third_party/opus/src/tests/
H A Dtest_opus_encode.c248 int bw,len,out_samples,frame_size; local
249 frame_size=frame[j];
264 len = opus_encode(enc, &inbuf[i<<1], frame_size, packet, MAX_PACKET);
268 if(out_samples!=frame_size)test_failed();
272 out_samples = opus_decode(dec_err[0], packet, len, out2buf, frame_size, (fast_rand()&3)!=0);
273 if(out_samples!=frame_size)test_failed();
276 i+=frame_size;
307 int len,out_samples,frame_size,loss; local
308 frame_size=frame[j];
311 len = opus_multistream_encode(MSenc, &inbuf[i<<1], frame_size, packe
343 int frame_size=fsizes[db62[fsize]]; local
[all...]
/external/srec/srec/include/
H A Dsample.h182 int frame_size; member in struct:__anon25955
206 void create_sample_buffer(wave_info *wave, int frame_size, int window_size);
/external/chromium/chrome/browser/chromeos/login/
H A Dcamera.cc215 gfx::Size frame_size = get_best_frame_size(fd, local
221 format.fmt.pix.width = frame_size.width();
222 format.fmt.pix.height = frame_size.height();
/external/chromium_org/cc/layers/
H A Ddelegated_renderer_layer_impl.cc220 gfx::Size frame_size) const {
225 static_cast<double>(display_size.width()) / frame_size.width(),
226 static_cast<double>(display_size.height()) / frame_size.height());
289 gfx::Size frame_size = root_delegated_render_pass->output_rect.size(); local
302 quad_sink, append_quads_data, root_delegated_render_pass, frame_size);
311 quad_sink, append_quads_data, delegated_render_pass, frame_size);
396 gfx::Size frame_size) const {
416 draw_transform() * DelegatedFrameToLayerSpaceTransform(frame_size);
/external/chromium_org/content/browser/renderer_host/
H A Drender_widget_host_view_browsertest.cc92 const gfx::Size& frame_size() const { function in class:content::__anon7773::RenderWidgetHostViewBrowserTest
169 frame_size(),
363 frame_size(),
389 media::VideoFrame::CreateBlackFrame(frame_size());
449 media::VideoFrame::CreateBlackFrame(frame_size());
452 media::VideoFrame::CreateBlackFrame(frame_size());
/external/chromium_org/media/cdm/ppapi/
H A Dclear_key_cdm.cc515 // |frame_size| must be a multiple of |bytes_per_sample|.
516 int64 frame_size = bytes_per_sample * samples_to_generate; local
520 const int kHeaderSize = sizeof(timestamp) + sizeof(frame_size);
521 audio_frames->SetFrameBuffer(host_->Allocate(kHeaderSize + frame_size));
526 memcpy(data, &frame_size, sizeof(frame_size));
527 data += sizeof(frame_size);
530 memset(data, 0, frame_size);
532 audio_frames->FrameBuffer()->SetSize(kHeaderSize + frame_size);
/external/chromium_org/third_party/libjingle/source/talk/sound/
H A Dalsasoundsystem.cc91 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() !
89 AlsaStream(AlsaSoundSystem *alsa, snd_pcm_t *handle, size_t frame_size, int wait_timeout_ms, int flags, int freq) argument
251 AlsaInputStream(AlsaSoundSystem *alsa, snd_pcm_t *handle, size_t frame_size, int wait_timeout_ms, int flags, int freq) argument
357 AlsaOutputStream(AlsaSoundSystem *alsa, snd_pcm_t *handle, size_t frame_size, int wait_timeout_ms, int flags, int freq) argument
633 OpenDevice( const SoundDeviceLocator *device, const OpenParams &params, snd_pcm_stream_t type, StreamInterface *(AlsaSoundSystem::*start_fn)( snd_pcm_t *handle, size_t frame_size, int wait_timeout_ms, int flags, int freq)) argument
727 StartOutputStream( snd_pcm_t *handle, size_t frame_size, int wait_timeout_ms, int flags, int freq) argument
738 StartInputStream( snd_pcm_t *handle, size_t frame_size, int wait_timeout_ms, int flags, int freq) argument
[all...]
/external/v8/src/
H A Ddeoptimizer.h347 FrameDescription(uint32_t frame_size,
350 void* operator new(size_t size, uint32_t frame_size) { argument
353 return malloc(size + frame_size - kPointerSize);
356 void operator delete(void* pointer, uint32_t frame_size) { argument
/external/webrtc/src/modules/audio_processing/test/
H A Dunit_test.cc1096 const size_t frame_size = samples_per_channel * 2; local
1099 frame_size,
1101 if (read_count != frame_size) {
1123 frame_size,
1125 if (read_count != frame_size) {
/external/chromium/chrome/browser/ui/gtk/
H A Dbrowser_titlebar.cc900 int frame_size = frame_strip->height(); local
901 size_t num_frames = frame_strip->width() / frame_size;
906 i * frame_size, 0, frame_size, frame_size);
/external/chromium/net/spdy/
H A Dspdy_framer.cc1662 size_t frame_size; local
1671 frame_size = SpdySynStreamControlFrame::size();
1673 *header_length = frame_size;
1681 frame_size = SpdySynReplyControlFrame::size();
1683 *header_length = frame_size;
1691 frame_size = SpdyHeadersControlFrame::size();
1693 *header_length = frame_size;
1702 frame_size = SpdyFrame::size();
1703 *header_length = frame_size;
/external/chromium_org/chrome/browser/ui/views/panels/
H A Dpanel_frame_view.cc194 const gfx::Size& frame_size,
199 int width = frame_size.width();
200 int height = frame_size.height();
193 GetFrameEdgeHitTest(const gfx::Point& point, const gfx::Size& frame_size, int resize_area_size, panel::Resizability resizability) argument
/external/chromium_org/content/browser/renderer_host/media/
H A Dweb_contents_video_capture_device.cc122 gfx::Rect ComputeYV12LetterboxRegion(const gfx::Size& frame_size, argument
125 gfx::Rect result = media::ComputeLetterboxRegion(gfx::Rect(frame_size),
/external/chromium_org/content/renderer/pepper/
H A Dcontent_decryptor_delegate.cc820 gfx::Size frame_size(frame_info->width, frame_info->height);
826 frame_size,
827 gfx::Rect(frame_size),
1012 int64 frame_size = -1; local
1013 const size_t kHeaderSize = sizeof(timestamp) + sizeof(frame_size);
1022 memcpy(&frame_size, cur, sizeof(frame_size));
1023 cur += sizeof(frame_size);
1024 bytes_left -= sizeof(frame_size);
1027 if (frame_size <
[all...]

Completed in 551 milliseconds

123