Home
last modified time | relevance | path

Searched refs:data_sz (Results 1 – 9 of 9) sorted by relevance

/hardware/intel/common/omx-components/videocodec/libvpx_internal/libvpx/vp9/
Dvp9_dx_iface.c88 static vpx_codec_err_t vp9_peek_si(const uint8_t *data, unsigned int data_sz, in vp9_peek_si() argument
90 if (data_sz <= 8) return VPX_CODEC_UNSUP_BITSTREAM; in vp9_peek_si()
91 if (data + data_sz <= data) return VPX_CODEC_INVALID_PARAM; in vp9_peek_si()
97 struct vp9_read_bit_buffer rb = { data, data + data_sz, 0, NULL, NULL }; in vp9_peek_si()
170 const uint8_t **data, unsigned int data_sz, in decode_one() argument
180 res = ctx->base.iface->dec.peek_si(*data, data_sz, &ctx->si); in decode_one()
261 if (vp9_receive_compressed_data(pbi, data_sz, data, deadline)) in decode_one()
276 static void parse_superframe_index(const uint8_t *data, size_t data_sz, in parse_superframe_index() argument
280 assert(data_sz); in parse_superframe_index()
281 marker = data[data_sz - 1]; in parse_superframe_index()
[all …]
/hardware/qcom/audio/legacy/libalsa-intf/
Darec.c84 uint32_t data_sz; member
267 hdr.data_sz = 0; in record_file()
335 hdr.data_sz += bufsize; in record_file()
336 hdr.riff_sz = hdr.data_sz + 44 - 8; in record_file()
365 hdr.data_sz += bufsize; in record_file()
366 hdr.riff_sz = hdr.data_sz + 44 - 8; in record_file()
380 return hdr.data_sz; in record_file()
454 hdr.data_sz = 0; in rec_wav()
462 hdr.riff_sz = hdr.data_sz + 44 - 8; in rec_wav()
492 hdr.riff_sz = hdr.data_sz + 44 - 8; in signal_handler()
[all …]
Daplay.c80 uint32_t data_sz; member
165 unsigned flags, const char *device, unsigned data_sz) in play_file() argument
258 remainingData = data_sz; in play_file()
338 if (data_sz && !piped) { in play_file()
351 if (data_sz && !piped) { in play_file()
443 if (data_sz && !piped) { in play_file()
457 if (data_sz && !piped) { in play_file()
518 hdr.data_sz = 0; in play_wav()
546 hdr.data_sz = 0; in play_wav()
556 return play_file(hdr.sample_rate, hdr.num_channels, fd, flag, device, hdr.data_sz); in play_wav()
/hardware/intel/common/omx-components/videocodec/libvpx_internal/libvpx/vpx/src/
Dvpx_decoder.c78 unsigned int data_sz, in vpx_codec_peek_stream_info() argument
82 if (!iface || !data || !data_sz || !si in vpx_codec_peek_stream_info()
90 res = iface->dec.peek_si(data, data_sz, si); in vpx_codec_peek_stream_info()
119 unsigned int data_sz, in vpx_codec_decode() argument
126 if (!ctx || (!data && data_sz)) in vpx_codec_decode()
131 res = ctx->iface->dec.decode(ctx->priv->alg_priv, data, data_sz, in vpx_codec_decode()
/hardware/intel/common/omx-components/videocodec/libvpx_internal/libvpx/vp8/
Dvp8_dx_iface.c194 unsigned int data_sz, in vp8_peek_si_internal() argument
201 if(data + data_sz <= data) in vp8_peek_si_internal()
217 int n = data_sz > 10 ? 10 : data_sz; in vp8_peek_si_internal()
223 if (data_sz >= 10 && !(clear[0] & 0x01)) /* I-Frame */ in vp8_peek_si_internal()
248 unsigned int data_sz, in vp8_peek_si() argument
250 return vp8_peek_si_internal(data, data_sz, si, NULL, NULL); in vp8_peek_si()
318 unsigned int data_sz, in update_fragments() argument
329 if (ctx->fragments.enabled && !(data == NULL && data_sz == 0)) in update_fragments()
335 ctx->fragments.sizes[ctx->fragments.count] = data_sz; in update_fragments()
349 ctx->fragments.sizes[0] = data_sz; in update_fragments()
[all …]
/hardware/intel/common/omx-components/videocodec/libvpx_internal/libvpx/vpx/
Dvpx_decoder.h173 unsigned int data_sz,
226 unsigned int data_sz,
/hardware/intel/common/omx-components/videocodec/libvpx_internal/libvpx/vpx/internal/
Dvpx_codec_internal.h116 unsigned int data_sz,
199 unsigned int data_sz,
/hardware/intel/common/omx-components/videocodec/
DOMXVideoDecoderVP9Hybrid.h61 bool isReallocateNeeded(const uint8_t *data, uint32_t data_sz);
DOMXVideoDecoderVP9Hybrid.cpp189 bool OMXVideoDecoderVP9Hybrid::isReallocateNeeded(const uint8_t * data,uint32_t data_sz) in isReallocateNeeded() argument
195 ret = mGetFrameResolution(data,data_sz, &width, &height); in isReallocateNeeded()