-
Notifications
You must be signed in to change notification settings - Fork 568
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
9 changed files
with
376 additions
and
29 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
351 changes: 330 additions & 21 deletions
351
...c/main/java/com/googlecode/mp4parser/boxes/mp4/objectdescriptors/AudioSpecificConfig.java
Large diffs are not rendered by default.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
22 changes: 22 additions & 0 deletions
22
isoparser/src/test/java/com/googlecode/mp4parser/boxes/mp4/ESDescriptorBoxTest.java
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,22 @@ | ||
package com.googlecode.mp4parser.boxes.mp4; | ||
|
||
import com.coremedia.iso.Hex; | ||
import com.coremedia.iso.IsoFile; | ||
import com.googlecode.mp4parser.MemoryDataSourceImpl; | ||
import com.googlecode.mp4parser.util.Path; | ||
import org.junit.Test; | ||
|
||
/** | ||
* Created by sannies on 20.05.2015. | ||
*/ | ||
public class ESDescriptorBoxTest { | ||
@Test | ||
public void testEsDescriptor() throws Exception { | ||
String esdsBytes = "0000002A6573647300000000031C000000041440150018000001F4000001F4000505131056E598060102"; | ||
//String esdsBytes = "0000003365736473000000000380808022000200048080801440150000000006AD650006AD65058080800211B0068080800102"; | ||
IsoFile isoFile = new IsoFile(new MemoryDataSourceImpl(Hex.decodeHex(esdsBytes))); | ||
ESDescriptorBox esds = Path.getPath(isoFile, "esds"); | ||
System.err.println(esds.getEsDescriptor()); | ||
|
||
} | ||
} |