subsample_entry.h | 19 // to concatenating all 'cypher_bytes' portions of subsamples, decrypting that 23 SubsampleEntry() : clear_bytes(0), cypher_bytes(0) {} 24 SubsampleEntry(uint32_t clear_bytes, uint32_t cypher_bytes) 25 : clear_bytes(clear_bytes), cypher_bytes(cypher_bytes) {} 27 uint32_t cypher_bytes; member in struct:media::SubsampleEntry
|