Home
last modified time | relevance | path

Searched refs:index_sz (Results 1 – 3 of 3) sorted by relevance

/hardware/intel/common/omx-components/videocodec/libvpx_internal/libvpx/test/
Dsuperframe_test.cc53 const unsigned int index_sz = 2 + mag * frames; in MutateEncoderOutputHook() local
55 pkt->data.frame.sz >= index_sz && in MutateEncoderOutputHook()
56 buffer[pkt->data.frame.sz - index_sz] == marker) { in MutateEncoderOutputHook()
60 modified_buf_ = new uint8_t[pkt->data.frame.sz - index_sz]; in MutateEncoderOutputHook()
62 pkt->data.frame.sz - index_sz); in MutateEncoderOutputHook()
65 modified_pkt_.data.frame.sz -= index_sz; in MutateEncoderOutputHook()
/hardware/intel/common/omx-components/videocodec/libvpx_internal/libvpx/vp9/
Dvp9_dx_iface.c287 const size_t index_sz = 2 + mag * frames; in parse_superframe_index() local
289 if (data_sz >= index_sz && data[data_sz - index_sz] == marker) { in parse_superframe_index()
292 const uint8_t *x = data + data_sz - index_sz + 1; in parse_superframe_index()
328 const uint32_t index_sz = 2 + mag * frames; in vp9_decode() local
330 if (data_sz >= index_sz && data_start[index_sz - 1] == marker) { in vp9_decode()
331 data_start += index_sz; in vp9_decode()
332 data_sz -= index_sz; in vp9_decode()
Dvp9_cx_iface.c618 int mag, index_sz; in write_superframe_index() local
636 index_sz = 2 + (mag + 1) * ctx->pending_frame_count; in write_superframe_index()
637 if (ctx->pending_cx_data_sz + index_sz < ctx->cx_data_sz) { in write_superframe_index()
651 ctx->pending_cx_data_sz += index_sz; in write_superframe_index()
653 return index_sz; in write_superframe_index()