Searched refs:ByteBuffer (Results 151 - 175 of 310) sorted by last modified time

1234567891011>>

/external/mp4parser/isoparser/src/main/java/com/googlecode/mp4parser/boxes/mp4/objectdescriptors/
H A DBitWriterBuffer.java3 import java.nio.ByteBuffer;
7 private ByteBuffer buffer;
11 public BitWriterBuffer(ByteBuffer buffer) {
H A DDecoderConfigDescriptor.java24 import java.nio.ByteBuffer;
63 public void parseDetail(ByteBuffer bb) throws IOException {
112 public ByteBuffer serialize() {
113 ByteBuffer out = ByteBuffer.allocate(serializedSize());
H A DDecoderSpecificInfo.java22 import java.nio.ByteBuffer;
37 public void parseDetail(ByteBuffer bb) throws IOException {
48 public ByteBuffer serialize() {
49 ByteBuffer out = ByteBuffer.wrap(bytes);
H A DESDescriptor.java23 import java.nio.ByteBuffer;
84 public void parseDetail(ByteBuffer bb) throws IOException {
177 public ByteBuffer serialize() {
178 ByteBuffer out = ByteBuffer.allocate(serializedSize()); // Usually is around 30 bytes, so 200 should be enough...
195 ByteBuffer dec = decoderConfigDescriptor.serialize();
196 ByteBuffer sl = slConfigDescriptor.serialize();
H A DExtensionDescriptor.java22 import java.nio.ByteBuffer;
58 public void parseDetail(ByteBuffer bb) throws IOException {
H A DExtensionProfileLevelDescriptor.java22 import java.nio.ByteBuffer;
36 public void parseDetail(ByteBuffer bb) throws IOException {
H A DInitialObjectDescriptor.java23 import java.nio.ByteBuffer;
74 public void parseDetail(ByteBuffer bb) throws IOException {
H A DObjectDescriptor.java_bak22 import java.nio.ByteBuffer;
58 public static ObjectDescriptor createFrom(ByteBuffer in) throws IOException {
H A DObjectDescriptorFactory.java23 import java.nio.ByteBuffer;
158 public static BaseDescriptor createFrom(int objectTypeIndication, ByteBuffer bb) throws IOException {
H A DProfileLevelIndicationDescriptor.java22 import java.nio.ByteBuffer;
35 public void parseDetail( ByteBuffer bb) throws IOException {
H A DSLConfigDescriptor.java23 import java.nio.ByteBuffer;
72 public void parseDetail(ByteBuffer bb) throws IOException {
80 public ByteBuffer serialize() {
81 ByteBuffer out = ByteBuffer.allocate(3);
H A DUnknownDescriptor.java20 import java.nio.ByteBuffer;
24 private ByteBuffer data;
28 public void parseDetail(ByteBuffer bb) throws IOException {
29 data = (ByteBuffer) bb.slice().limit(this.getSizeOfInstance());
/external/mp4parser/isoparser/src/main/java/com/googlecode/mp4parser/boxes/mp4/samplegrouping/
H A DCencSampleEncryptionInformationGroupEntry.java23 import java.nio.ByteBuffer;
42 public void parse(ByteBuffer byteBuffer) {
51 public ByteBuffer get() {
52 ByteBuffer byteBuffer = ByteBuffer.allocate(20);
H A DGroupEntry.java19 import java.nio.ByteBuffer;
22 public abstract void parse(ByteBuffer byteBuffer);
23 public abstract ByteBuffer get();
H A DRateShareEntry.java23 import java.nio.ByteBuffer;
59 public void parse(ByteBuffer byteBuffer) {
75 public ByteBuffer get() {
76 ByteBuffer buf = ByteBuffer.allocate(operationPointCut == 1?13:(operationPointCut * 6 + 11 ));
H A DRollRecoveryEntry.java19 import java.nio.ByteBuffer;
43 public void parse(ByteBuffer byteBuffer) {
48 public ByteBuffer get() {
49 ByteBuffer content = ByteBuffer.allocate(2);
H A DSampleGroupDescriptionBox.java23 import java.nio.ByteBuffer;
71 protected void getContent(ByteBuffer byteBuffer) {
87 protected void _parseDetails(ByteBuffer content) {
108 ByteBuffer parseMe = content.slice();
116 private GroupEntry parseGroupEntry(ByteBuffer content, String groupingType) {
H A DSampleToGroupBox.java23 import java.nio.ByteBuffer;
62 protected void getContent(ByteBuffer byteBuffer) {
77 protected void _parseDetails(ByteBuffer content) {
H A DTemporalLevelEntry.java19 import java.nio.ByteBuffer;
41 public void parse(ByteBuffer byteBuffer) {
47 public ByteBuffer get() {
48 ByteBuffer content = ByteBuffer.allocate(1);
H A DUnknownEntry.java21 import java.nio.ByteBuffer;
27 private ByteBuffer content;
32 public ByteBuffer getContent() {
36 public void setContent(ByteBuffer content) {
37 this.content = (ByteBuffer) content.duplicate().rewind();
41 public void parse(ByteBuffer byteBuffer) {
42 this.content = (ByteBuffer) byteBuffer.duplicate().rewind();
46 public ByteBuffer get() {
52 ByteBuffer bb = content.duplicate();
H A DVisualRandomAccessEntry.java21 import java.nio.ByteBuffer;
51 public void parse(ByteBuffer byteBuffer) {
58 public ByteBuffer get() {
59 ByteBuffer content = ByteBuffer.allocate(1);
/external/mp4parser/isoparser/src/main/java/com/googlecode/mp4parser/boxes/piff/
H A DPlayReadyHeader.java12 import java.nio.ByteBuffer;
48 public void parse(ByteBuffer byteBuffer) {
65 public ByteBuffer getData() {
72 ByteBuffer byteBuffer = ByteBuffer.allocate(size);
79 ByteBuffer tmp4debug = record.getValue();
113 public static List<PlayReadyRecord> createFor(ByteBuffer byteBuffer, int recordCount) {
133 record.parse((ByteBuffer) byteBuffer.slice().limit(length));
141 public abstract void parse(ByteBuffer bytes);
154 public abstract ByteBuffer getValu
[all...]
H A DProtectionSpecificHeader.java14 import java.nio.ByteBuffer;
22 ByteBuffer data;
38 public static ProtectionSpecificHeader createFor(UUID systemId, ByteBuffer bufferWrapper) {
57 public void parse(ByteBuffer buffer) {
62 public ByteBuffer getData() {
71 ByteBuffer data = getData().duplicate();
H A DTfrfBox.java7 import java.nio.ByteBuffer;
56 protected void getContent(ByteBuffer byteBuffer) {
72 public void _parseDetails(ByteBuffer content) {
H A DTfxdBox.java7 import java.nio.ByteBuffer;
54 public void _parseDetails(ByteBuffer content) {
67 protected void getContent(ByteBuffer byteBuffer) {

Completed in 184 milliseconds

1234567891011>>