Lines Matching full:frame_bytes
100 uint8_t* frame_bytes;
107 frame_bytes = (uint8_t*)WebPSafeMalloc(1ULL, frame_size);
108 if (frame_bytes == NULL) return WEBP_MUX_MEMORY_ERROR;
110 PutLE24(frame_bytes + 0, info->x_offset / 2);
111 PutLE24(frame_bytes + 3, info->y_offset / 2);
113 PutLE24(frame_bytes + 6, width - 1);
114 PutLE24(frame_bytes + 9, height - 1);
115 PutLE24(frame_bytes + 12, info->duration);
116 frame_bytes[15] =
120 frame->bytes = frame_bytes;