本文整理汇总了Java中com.mp4parser.iso14496.part15.AvcConfigurationBox类的典型用法代码示例。如果您正苦于以下问题:Java AvcConfigurationBox类的具体用法?Java AvcConfigurationBox怎么用?Java AvcConfigurationBox使用的例子?那么恭喜您, 这里精选的类代码示例或许可以为您提供帮助。
AvcConfigurationBox类属于com.mp4parser.iso14496.part15包,在下文中一共展示了AvcConfigurationBox类的1个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的Java代码示例。
示例1: processVideoBox
import com.mp4parser.iso14496.part15.AvcConfigurationBox; //导入依赖的package包/类
/**
* Process the video information contained in the atoms.
*
* @param stbl
* @param scale timescale
*/
private void processVideoBox(SampleTableBox stbl, long scale) {
AvcConfigurationBox avcC = (AvcConfigurationBox) Path.getPath(isoFile, "/moov/trak/mdia/minf/stbl/stsd/drmi/avcC");
if (avcC != null) {
long videoConfigContentSize = avcC.getContentSize();
log.debug("AVCC size: {}", videoConfigContentSize);
// ByteBuffer byteBuffer = ByteBuffer.allocate((int) videoConfigContentSize);
// avc1.avcDecoderConfigurationRecord.getContent(byteBuffer);
// byteBuffer.flip();
// videoDecoderBytes = new byte[byteBuffer.limit()];
// byteBuffer.get(videoDecoderBytes);
} else {
log.warn("avcC atom not found");
}
processVideoStbl(stbl, scale);
}