Searched defs:chunk_size (Results 1 - 2 of 2) sorted by relevance

/frameworks/base/tools/aapt/
H A DImages.cpp1069 int chunk_size = sizeof(png_uint_32) * 4; local
1071 unknowns[b_index].data = (png_byte*) calloc(chunk_size, 1);
1072 memcpy(unknowns[b_index].data, &imageInfo.layoutBoundsLeft, chunk_size);
1073 unknowns[b_index].size = chunk_size;
/frameworks/av/media/libstagefright/
H A DMPEG4Extractor.cpp741 uint64_t chunk_size = ntohl(hdr[0]); local
745 if (chunk_size == 1) {
746 if (mDataSource->readAt(*offset + 8, &chunk_size, 8) < 8) {
749 chunk_size = ntoh64(chunk_size);
752 if (chunk_size < 16) {
756 } else if (chunk_size < 8) {
768 printf("%sfound chunk '%s' of size %lld\n", indent, chunk, chunk_size);
771 size_t n = chunk_size;
785 off64_t chunk_data_size = *offset + chunk_size
2493 uint64_t chunk_size = ntohl(hdr[0]); local
[all...]

Completed in 140 milliseconds