Home
last modified time | relevance | path

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

/external/mp4parser/isoparser/src/main/java/com/coremedia/iso/boxes/sampleentry/
DTextSampleEntry.java49 private int[] backgroundColorRgba = new int[4]; // 4 bytes field in TextSampleEntry
63 backgroundColorRgba = new int[4]; in _parseDetails()
64 backgroundColorRgba[0] = IsoTypeReader.readUInt8(content); in _parseDetails()
65 backgroundColorRgba[1] = IsoTypeReader.readUInt8(content); in _parseDetails()
66 backgroundColorRgba[2] = IsoTypeReader.readUInt8(content); in _parseDetails()
67 backgroundColorRgba[3] = IsoTypeReader.readUInt8(content); in _parseDetails()
97 IsoTypeWriter.writeUInt8(byteBuffer, backgroundColorRgba[0]); in getContent()
98 IsoTypeWriter.writeUInt8(byteBuffer, backgroundColorRgba[1]); in getContent()
99 IsoTypeWriter.writeUInt8(byteBuffer, backgroundColorRgba[2]); in getContent()
100 IsoTypeWriter.writeUInt8(byteBuffer, backgroundColorRgba[3]); in getContent()
[all …]