Home
last modified time | relevance | path

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

/external/mp4parser/isoparser/src/main/java/com/googlecode/mp4parser/boxes/ultraviolet/
DBaseLocationBox.java67 content.get(new byte[256 - Utf8.utf8StringLengthInBytes(baseLocation) - 1]); in _parseDetails()
69 content.get(new byte[256 - Utf8.utf8StringLengthInBytes(purchaseLocation) - 1]); in _parseDetails()
77 …byteBuffer.put(new byte[256 - Utf8.utf8StringLengthInBytes(baseLocation)]); // string plus term ze… in getContent()
79 …byteBuffer.put(new byte[256 - Utf8.utf8StringLengthInBytes(purchaseLocation)]); // string plus ter… in getContent()
DAssetInformationBox.java38 return Utf8.utf8StringLengthInBytes(apid) + 9; in getContentSize()
/external/mp4parser/isoparser/src/main/java/com/coremedia/iso/boxes/
DDataEntryUrnBox.java48 return Utf8.utf8StringLengthInBytes(name) + 1 + Utf8.utf8StringLengthInBytes(location) + 1; in getContentSize()
DKeywordsBox.java58 contentSize += 1 + Utf8.utf8StringLengthInBytes(keyword) + 1; in getContentSize()
81 IsoTypeWriter.writeUInt8(byteBuffer, Utf8.utf8StringLengthInBytes(keyword) + 1); in getContent()
DHandlerBox.java104 return 25 + Utf8.utf8StringLengthInBytes(name); in getContentSize()
106 return 24 + Utf8.utf8StringLengthInBytes(name); in getContentSize()
DXmlBox.java30 return 4 + Utf8.utf8StringLengthInBytes(xml); in getContentSize()
DTitleBox.java68 return 7 + Utf8.utf8StringLengthInBytes(title); in getContentSize()
DAuthorBox.java72 return 7 + Utf8.utf8StringLengthInBytes(author); in getContentSize()
DPerformerBox.java57 return 6 + Utf8.utf8StringLengthInBytes(performer) + 1; in getContentSize()
DCopyrightBox.java62 return 7 + Utf8.utf8StringLengthInBytes(copyright); in getContentSize()
DDescriptionBox.java48 return 7 + Utf8.utf8StringLengthInBytes(description); in getContentSize()
DGenreBox.java58 return 7 + Utf8.utf8StringLengthInBytes(genre); in getContentSize()
DAlbumBox.java75 return 6 + Utf8.utf8StringLengthInBytes(albumTitle) + 1 + (trackNumber == -1 ? 0 : 1); in getContentSize()
DSchemeTypeBox.java69 return 12 + (((getFlags() & 1) == 1) ? Utf8.utf8StringLengthInBytes(schemeUri) + 1 : 0); in getContentSize()
DClassificationBox.java76 return 4 + 2 + 2 + Utf8.utf8StringLengthInBytes(classificationInfo) + 1; in getContentSize()
DRatingBox.java91 return 15 + Utf8.utf8StringLengthInBytes(ratingInfo); in getContentSize()
/external/mp4parser/isoparser/src/main/java/com/coremedia/iso/boxes/sampleentry/
DVisualSampleEntry.java199 IsoTypeWriter.writeUInt8(byteBuffer, Utf8.utf8StringLengthInBytes(getCompressorname())); in getContent()
201 int a = Utf8.utf8StringLengthInBytes(getCompressorname()); in getContent()
/external/mp4parser/isoparser/src/main/java/com/coremedia/iso/
DUtf8.java48 public static int utf8StringLengthInBytes(String utf8) { in utf8StringLengthInBytes() method in Utf8
/external/mp4parser/isoparser/src/main/java/com/coremedia/iso/boxes/apple/
DAppleMeanBox.java23 return 4 + Utf8.utf8StringLengthInBytes(meaning); in getContentSize()
/external/mp4parser/isoparser/src/main/java/com/coremedia/iso/boxes/vodafone/
DLyricsUriBox.java47 return Utf8.utf8StringLengthInBytes(lyricsUri) + 5; in getContentSize()
DCoverUriBox.java46 return Utf8.utf8StringLengthInBytes(coverUri) + 5; in getContentSize()
DContentDistributorIdBox.java48 return 2 + Utf8.utf8StringLengthInBytes(contentDistributorId) + 5; in getContentSize()
DAlbumArtistBox.java58 return 6 + Utf8.utf8StringLengthInBytes(albumArtist) + 1; in getContentSize()
/external/mp4parser/isoparser/src/main/java/com/googlecode/mp4parser/boxes/threegpp26245/
DFontTableBox.java84 return Utf8.utf8StringLengthInBytes(fontname) + 3; in getSize()