HomeSort by relevance Sort by last modified time
    Searched refs:frame_size (Results 76 - 100 of 248) sorted by null

1 2 34 5 6 7 8 910

  /art/runtime/
stack.cc 696 size_t frame_size = GetCurrentQuickFrameInfo().FrameSizeInBytes(); local
697 CHECK_NE(frame_size, 0u);
706 CHECK_LE(frame_size, kMaxExpectedFrameSize) << PrettyMethod(method);
708 CHECK_LT(return_pc_offset, frame_size);
766 size_t frame_size = RoundUp( local
769 return QuickMethodFrameInfo(frame_size, callee_info.CoreSpillMask(), callee_info.FpSpillMask());
829 size_t frame_size = frame_info.FrameSizeInBytes(); local
    [all...]
  /external/libvpx/libvpx/vp9/
vp9_dx_iface.c 575 const uint32_t frame_size = frame_sizes[i]; local
577 || frame_size > (uint32_t) (data_end - data_start)) {
594 res = decode_one(ctx, &data_start_copy, frame_size, user_priv,
598 data_start += frame_size;
624 const uint32_t frame_size = frame_sizes[i]; local
627 || frame_size > (uint32_t) (data_end - data_start)) {
632 res = decode_one(ctx, &data_start_copy, frame_size, user_priv,
637 data_start += frame_size;
641 const uint32_t frame_size = (uint32_t) (data_end - data_start); local
642 const vpx_codec_err_t res = decode_one(ctx, &data_start, frame_size,
908 int *const frame_size = va_arg(args, int *); local
    [all...]
  /external/libvpx/libvpx/
vpxdec.c 212 size_t frame_size = 0; local
220 frame_size = mem_get_le32(raw_hdr);
222 if (frame_size > kCorruptFrameThreshold) {
223 warn("Read invalid frame size (%u)\n", (unsigned int)frame_size);
224 frame_size = 0;
227 if (frame_size < kFrameTooSmallThreshold) {
229 (unsigned int)frame_size);
232 if (frame_size > *buffer_size) {
233 uint8_t *new_buf = realloc(*buffer, 2 * frame_size);
236 *buffer_size = 2 * frame_size;
    [all...]
  /hardware/intel/common/omx-components/videocodec/libvpx_internal/libvpx/
vpxdec.c 175 size_t frame_size = 0; local
183 frame_size = mem_get_le32(raw_hdr);
185 if (frame_size > kCorruptFrameThreshold) {
186 warn("Read invalid frame size (%u)\n", (unsigned int)frame_size);
187 frame_size = 0;
190 if (frame_size < kFrameTooSmallThreshold) {
192 (unsigned int)frame_size);
195 if (frame_size > *buffer_size) {
196 uint8_t *new_buf = realloc(*buffer, 2 * frame_size);
199 *buffer_size = 2 * frame_size;
    [all...]
  /external/speex/libspeex/
preprocess.c 183 int frame_size; /**< Number of samples processed each time */ member in struct:SpeexPreprocessState_
395 EXPORT SpeexPreprocessState *speex_preprocess_state_init(int frame_size, int sampling_rate)
401 st->frame_size = frame_size;
406 st->ps_size = st->frame_size;
419 if (st->ps_size < 3*st->frame_size/4)
422 st->ps_size = st->frame_size;
426 N3 = 2*N - st->frame_size;
427 N4 = st->frame_size - N3;
519 st->max_increase_step = exp(0.11513f * 12.*st->frame_size / st->sampling_rate)
    [all...]
  /external/libopus/celt/
celt_decoder.c 655 int celt_decode_with_ec(CELTDecoder * OPUS_RESTRICT st, const unsigned char *data, int len, opus_val16 * OPUS_RESTRICT pcm, int frame_size, ec_dec *dec)
706 frame_size *= st->downsample;
735 if (frame_size < mode->shortMdctSize<<LM)
738 frame_size = mode->shortMdctSize<<LM;
744 if (mode->shortMdctSize<<LM==frame_size)
764 return frame_size/st->downsample;
1022 return frame_size/st->downsample;
1029 int opus_custom_decode(CELTDecoder * OPUS_RESTRICT st, const unsigned char *data, int len, opus_int16 * OPUS_RESTRICT pcm, int frame_size)
1031 return celt_decode_with_ec(st, data, len, pcm, frame_size, NULL);
1035 int opus_custom_decode_float(CELTDecoder * OPUS_RESTRICT st, const unsigned char *data, int len, float * OPUS_RESTRICT pcm, int frame_size)
    [all...]
celt.h 123 int celt_encode_with_ec(OpusCustomEncoder * OPUS_RESTRICT st, const opus_val16 * pcm, int frame_size, unsigned char *compressed, int nbCompressedBytes, ec_enc *enc);
137 int celt_decode_with_ec(OpusCustomDecoder * OPUS_RESTRICT st, const unsigned char *data, int len, opus_val16 * OPUS_RESTRICT pcm, int frame_size, ec_dec *dec);
  /external/libvpx/libvpx/test/
byte_alignment_test.cc 90 decoder_->DecodeFrame(video_->cxdata(), video_->frame_size());
100 decoder_->DecodeFrame(video_->cxdata(), video_->frame_size());
vp9_frame_parallel_test.cc 61 decoder.DecodeFrame(video.cxdata(), video.frame_size());
148 decoder.DecodeFrame(video.cxdata(), video.frame_size());
vp9_skip_loopfilter_test.cc 64 decoder_->DecodeFrame(video_->cxdata(), video_->frame_size());
75 decoder_->DecodeFrame(video_->cxdata(), video_->frame_size());
  /prebuilts/gdb/darwin-x86/lib/python2.7/
sndhdr.py 102 frame_size = sample_size * nchannels
103 return type, rate, nchannels, data_size//frame_size, sample_bits
  /prebuilts/gdb/linux-x86/lib/python2.7/
sndhdr.py 102 frame_size = sample_size * nchannels
103 return type, rate, nchannels, data_size//frame_size, sample_bits
  /prebuilts/python/darwin-x86/2.7.5/lib/python2.7/
sndhdr.py 102 frame_size = sample_size * nchannels
103 return type, rate, nchannels, data_size//frame_size, sample_bits
  /prebuilts/python/linux-x86/2.7.5/lib/python2.7/
sndhdr.py 102 frame_size = sample_size * nchannels
103 return type, rate, nchannels, data_size//frame_size, sample_bits
  /external/valgrind/coregrind/m_sigframe/
sigframe-arm-linux.c 250 UInt frame_size; local
260 frame_size = sizeof(*frame);
266 frame_size = sizeof(*frame);
306 frame_size + VG_STACK_REDZONE_SZB );
sigframe-arm64-linux.c 225 UInt frame_size; local
236 frame_size = sizeof(*frame);
243 //ZZ frame_size = sizeof(*frame);
282 frame_size + VG_STACK_REDZONE_SZB );
  /frameworks/av/media/libstagefright/include/
avc_utils.h 101 uint32_t header, size_t *frame_size,
  /hardware/qcom/msm8994/kernel-headers/sound/
compress_offload.h 77 uint32_t frame_size; member in struct:snd_compr_audio_info
  /hardware/qcom/msm8994/original-kernel-headers/sound/
compress_offload.h 127 * @frame_size: legth of the encoded frame with valid data
131 uint32_t frame_size; member in struct:snd_compr_audio_info
  /hardware/qcom/msm8x26/kernel-headers/sound/
compress_offload.h 77 uint32_t frame_size; member in struct:snd_compr_audio_info
  /hardware/qcom/msm8x26/original-kernel-headers/sound/
compress_offload.h 127 * @frame_size: legth of the encoded frame with valid data
131 uint32_t frame_size; member in struct:snd_compr_audio_info
  /hardware/qcom/msm8x84/kernel-headers/sound/
compress_offload.h 77 uint32_t frame_size; member in struct:snd_compr_audio_info
  /hardware/qcom/msm8x84/original-kernel-headers/sound/
compress_offload.h 127 * @frame_size: legth of the encoded frame with valid data
131 uint32_t frame_size; member in struct:snd_compr_audio_info
  /external/webrtc/webrtc/modules/audio_coding/codecs/isac/
unittest.cc 245 for (int frame_size : frame_sizes)
246 if (!(sample_rate == 32000 && frame_size == 60))
248 {type, adaptive, channel_rate, sample_rate, frame_size});
  /external/webrtc/webrtc/modules/video_coding/
jitter_buffer.h 46 VCMJitterSample() : timestamp(0), frame_size(0), latest_packet_time(-1) {}
48 uint32_t frame_size; member in struct:webrtc::VCMJitterSample
311 unsigned int frame_size,

Completed in 715 milliseconds

1 2 34 5 6 7 8 910