Home
last modified time | relevance | path

Searched refs:this_sz (Results 1 – 6 of 6) sorted by relevance

/external/libvpx/test/
Dvp9_ratectrl_rtc_test.cc327 uint32_t this_sz = 0; in ParseSuperframeSizes() local
329 for (uint32_t j = 0; j < mag; ++j) this_sz |= (*x++) << (j * 8); in ParseSuperframeSizes()
330 sizes_[i] = this_sz; in ParseSuperframeSizes()
Dsvc_datarate_test.cc460 uint32_t this_sz = 0; in parse_superframe_index() local
462 for (j = 0; j < mag; ++j) this_sz |= (*x++) << (j * 8); in parse_superframe_index()
463 sizes[i] = this_sz; in parse_superframe_index()
/external/libvpx/vp9/decoder/
Dvp9_decoder.c575 uint32_t this_sz = 0; in vp9_parse_superframe_index() local
577 for (j = 0; j < mag; ++j) this_sz |= ((uint32_t)(*x++)) << (j * 8); in vp9_parse_superframe_index()
578 sizes[i] = this_sz; in vp9_parse_superframe_index()
/external/libvpx/examples/
Dvp9_spatial_svc_encoder.c548 uint32_t this_sz = 0; in parse_superframe_index() local
550 for (j = 0; j < mag; ++j) this_sz |= (*x++) << (j * 8); in parse_superframe_index()
551 sizes[i] = this_sz; in parse_superframe_index()
/external/libwebm/
Dwebm_info.cc685 uint32_t this_sz = 0; in ParseSuperframeIndex() local
688 this_sz |= (*x++) << (j * 8); in ParseSuperframeIndex()
690 sizes[i] = this_sz; in ParseSuperframeIndex()
/external/libvpx/vp9/
Dvp9_cx_iface.c1231 unsigned int this_sz = (unsigned int)ctx->pending_frame_sizes[i]; in write_superframe_index() local
1234 *x++ = this_sz & 0xff; in write_superframe_index()
1235 this_sz >>= 8; in write_superframe_index()