OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
full:schemetype
(Results
1 - 1
of
1
) sorted by null
/external/mp4parser/isoparser/src/main/java/com/coremedia/iso/boxes/
SchemeTypeBox.java
35
String
schemeType
= " ";
44
return
schemeType
;
55
public void setSchemeType(String
schemeType
) {
56
assert
schemeType
!= null &&
schemeType
.length() == 4 : "
SchemeType
may not be null or not 4 bytes long";
57
this.
schemeType
=
schemeType
;
75
schemeType
= IsoTypeReader.read4cc(content);
85
byteBuffer.put(IsoFile.fourCCtoBytes(
schemeType
));
[
all
...]
Completed in 166 milliseconds