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

1 23 4 5 6 7 8 910

  /external/webrtc/webrtc/tools/frame_analyzer/
video_quality_analysis.cc 98 int frame_size = GetI420FrameSize(width, height); local
99 int offset = frame_number * frame_size; // Calculate offset for the frame.
112 size_t bytes_read = fread(result_frame, 1, frame_size, input_file);
113 if (bytes_read != static_cast<size_t>(frame_size) &&
128 int frame_size = GetI420FrameSize(width, height); local
129 int frame_offset = frame_number * frame_size;
146 if (bytes_read != static_cast<size_t>(frame_size) && ferror(input_file)) {
166 size_t bytes_read = fread(result_frame, 1, frame_size, input_file);
167 if (bytes_read != static_cast<size_t>(frame_size) &&
  /external/libvpx/libvpx/examples/
decode_to_md5.c 113 size_t frame_size = 0; local
115 &frame_size);
116 if (vpx_codec_decode(&codec, frame, (unsigned int)frame_size, NULL, 0))
  /hardware/intel/common/omx-components/videocodec/libvpx_internal/libvpx/examples/
decode_to_md5.c 115 size_t frame_size = 0; local
117 &frame_size);
118 if (vpx_codec_decode(&codec, frame, (unsigned int)frame_size, NULL, 0))
  /external/libvpx/libvpx/test/
decode_api_test.cc 135 const uint32_t frame_size = static_cast<uint32_t>(video.frame_size()); local
138 vpx_codec_decode(&dec, video.cxdata(), frame_size, NULL, 0));
141 vpx_codec_decode(&dec, video.cxdata(), frame_size, NULL, 0));
decode_test_driver.cc 84 video->frame_size(),
90 video->frame_size());
ivf_video_source.h 97 virtual size_t frame_size() const { return frame_sz_; } function in class:libvpx_test::IVFVideoSource
user_priv_test.cc 59 decoder.DecodeFrame(video.cxdata(), video.frame_size(),
webm_video_source.h 87 virtual size_t frame_size() const { return buf_sz_; } function in class:libvpx_test::WebMVideoSource
  /external/speex/include/speex/
speex_preprocess.h 60 * @param frame_size Number of samples to process at one time (should correspond to 10-20 ms). Must be
65 SpeexPreprocessState *speex_preprocess_state_init(int frame_size, int sampling_rate);
  /hardware/intel/common/omx-components/videocodec/libvpx_internal/libvpx/test/
decode_test_driver.cc 37 video->frame_size());
decode_perf_test.cc 83 decoder.DecodeFrame(video.cxdata(), video.frame_size());
ivf_video_source.h 97 virtual size_t frame_size() const { return frame_sz_; } function in class:libvpx_test::IVFVideoSource
  /hardware/intel/common/omx-components/videocodec/libvpx_internal/libvpx/vpx_scale/
yv12config.h 52 int frame_size; member in struct:yv12_buffer_config
  /hardware/intel/common/omx-components/videocodec/securevideo/moorefield/
OMXVideoDecoderAVCSecure.cpp 292 nalu_headers.frame_size = buffer->nFilledLen;
294 nalu_headers.frame_size = (nalu_headers.frame_size + 0xF) & (~0xF);
297 if((nalu_headers.frame_size + NALU_HEADER_LENGTH) > INPORT_BUFFER_SIZE){
302 nalu_headers.p_hdrs_buf = (uint8_t *)(dataBuffer->data + nalu_headers.frame_size + 4);
312 ALOGE("Drm_WV_ReturnNALUHeaders failed. Error = %#x, frame_size: %d, len = %u", res, nalu_headers.frame_size, buffer->nFilledLen);
325 uint32_t *ptr = (uint32_t*)(dataBuffer->data + nalu_headers.frame_size);
328 p->size = nalu_headers.frame_size;
394 nalu_headers.frame_size = buffer->nFilledLen
    [all...]
  /system/media/alsa_utils/include/
alsa_device_proxy.h 31 size_t frame_size; /* valid after proxy_prepare(), the frame size in bytes */ member in struct:__anon73388
  /external/speex/libspeex/
sb_celp.h 48 int frame_size; /**< Length of high-band frames*/ member in struct:SBEncState
103 int frame_size; member in struct:SBDecState
stereo.c 108 EXPORT void speex_encode_stereo(float *data, int frame_size, SpeexBits *bits)
113 for (i=0;i<frame_size;i++)
146 EXPORT void speex_encode_stereo_int(spx_int16_t *data, int frame_size, SpeexBits *bits)
162 for (i=0;i<frame_size;i++)
221 EXPORT void speex_decode_stereo(float *data, int frame_size, SpeexStereoState *_stereo)
237 for (i=frame_size-1;i>=0;i--)
248 EXPORT void speex_decode_stereo_int(spx_int16_t *data, int frame_size, SpeexStereoState *_stereo)
264 for (i=frame_size-1;i>=0;i--)
speex_header.c 77 int frame_size;
112 speex_mode_query(m, SPEEX_MODE_FRAME_SIZE, &header->frame_size);
136 ENDIAN_SWITCH(le_header->frame_size);
176 ENDIAN_SWITCH(le_header->frame_size);
sb_celp.c 213 st->frame_size = mode->frameSize;
216 st->windowSize = st->frame_size+st->subframeSize;
233 st->high=(spx_word16_t*)speex_alloc((st->windowSize-st->frame_size)*sizeof(spx_word16_t));
335 high = in+st->frame_size;
346 e_low = compute_rms16(low, st->frame_size);
347 e_high = compute_rms16(high, st->frame_size);
356 high = high - (st->windowSize-st->frame_size);
357 SPEEX_COPY(high, st->high, st->windowSize-st->frame_size);
358 SPEEX_COPY(st->high, &high[st->frame_size], st->windowSize-st->frame_size);
    [all...]
  /external/webrtc/webrtc/modules/audio_coding/neteq/
neteq_stereo_unittest.cc 28 int frame_size; member in struct:webrtc::TestParameters
53 frame_size_ms_(GetParam().frame_size),
385 for (int frame_size = 10; frame_size <= 60; frame_size += 10) {
387 p.frame_size = frame_size;
403 *os << "{frame_size = " << p.frame_size <<
  /frameworks/av/media/libstagefright/
MP3Extractor.cpp 147 size_t frame_size; local
150 header, &frame_size,
163 off64_t test_pos = pos + frame_size;
307 size_t frame_size; local
312 header, &frame_size, &sample_rate, &num_channels, &bitrate);
313 pos += frame_size;
322 size_t frame_size; local
327 header, &frame_size, &sample_rate, &num_channels, &bitrate);
531 size_t frame_size; local
548 header, &frame_size, &sample_rate, NULL
    [all...]
  /system/media/alsa_utils/
alsa_device_proxy.c 92 proxy->frame_size = format_byte_size_map[config->format] * proxy->alsa_config.channels;
94 proxy->frame_size = 1;
212 proxy->transferred += count / proxy->frame_size;
  /external/libopus/src/
analysis.h 87 int analysis_frame_size, int frame_size, int c1, int c2, int C, opus_int32 Fs,
  /external/libvpx/libvpx/vpx_scale/
yv12config.h 54 int frame_size; member in struct:yv12_buffer_config
  /hardware/intel/img/psb_headers/DRM/cc54/inc/
wv_drm_api.h 82 uint32_t frame_size; member in struct:drm_wv_nalu_headers

Completed in 718 milliseconds

1 23 4 5 6 7 8 910