当前位置: 首页>>代码示例>>Java>>正文


Java NIOUtils.readString方法代码示例

本文整理汇总了Java中org.jcodec.common.NIOUtils.readString方法的典型用法代码示例。如果您正苦于以下问题:Java NIOUtils.readString方法的具体用法?Java NIOUtils.readString怎么用?Java NIOUtils.readString使用的例子?那么, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在org.jcodec.common.NIOUtils的用法示例。


在下文中一共展示了NIOUtils.readString方法的6个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的Java代码示例。

示例1: read

import org.jcodec.common.NIOUtils; //导入方法依赖的package包/类
public static Header read(ByteBuffer input) {
    long size = 0;
    while (input.remaining() >= 4 && (size = (((long) input.getInt()) & 0xffffffffL)) == 0)
        ;
    if (input.remaining() < 4 || size < 8 && size != 1) {
        Logger.error("Broken atom of size " + size);
        return null;
    }

    String fourcc = NIOUtils.readString(input, 4);
    boolean lng = false;
    if (size == 1) {
        if (input.remaining() >= 8) {
            lng = true;
            size = input.getLong();
        } else {
            Logger.error("Broken atom of size " + size);
            return null;
        }
    }

    return new Header(fourcc, size, lng);
}
 
开发者ID:ihmcrobotics,项目名称:ihmc-video-codecs,代码行数:24,代码来源:Header.java

示例2: read

import org.jcodec.common.NIOUtils; //导入方法依赖的package包/类
public static Header read(ByteBuffer input) {
    long size = 0;
    while (input.remaining() >= 4 && (size = (((long) input.getInt()) & 0xffffffffL)) == 0)
        ;
    if (input.remaining() < 4 || size < 8 && size != 1) {
        System.out.println("Broken atom of size " + size);
        return null;
    }

    String fourcc = NIOUtils.readString(input, 4);
    boolean lng = false;
    if (size == 1) {
        if (input.remaining() >= 8) {
            lng = true;
            size = input.getLong();
        } else {
            System.out.println("Broken atom of size " + size);
            return null;
        }
    }

    return new Header(fourcc, size, lng);
}
 
开发者ID:PenoaksDev,项目名称:OpenSpaceDVR,代码行数:24,代码来源:Header.java

示例3: parse

import org.jcodec.common.NIOUtils; //导入方法依赖的package包/类
public void parse(ByteBuffer input) {
    super.parse(input);

    componentType = NIOUtils.readString(input, 4);
    componentSubType = NIOUtils.readString(input, 4);
    componentManufacturer = NIOUtils.readString(input, 4);

    componentFlags = input.getInt();
    componentFlagsMask = input.getInt();
    componentName = NIOUtils.readString(input, input.remaining());
}
 
开发者ID:ihmcrobotics,项目名称:ihmc-video-codecs,代码行数:12,代码来源:HandlerBox.java

示例4: parse

import org.jcodec.common.NIOUtils; //导入方法依赖的package包/类
public void parse(ByteBuffer input) {
    majorBrand = NIOUtils.readString(input, 4);
    minorVersion = input.getInt();

    String brand;
    while ((brand = NIOUtils.readString(input, 4)) != null) {
        compBrands.add(brand);
    }
}
 
开发者ID:ihmcrobotics,项目名称:ihmc-video-codecs,代码行数:10,代码来源:FileTypeBox.java

示例5: parse

import org.jcodec.common.NIOUtils; //导入方法依赖的package包/类
public void parse(ByteBuffer input) {
    this.fmt = NIOUtils.readString(input, 4);
}
 
开发者ID:ihmcrobotics,项目名称:ihmc-video-codecs,代码行数:4,代码来源:FormatBox.java

示例6: parse

import org.jcodec.common.NIOUtils; //导入方法依赖的package包/类
public void parse(ByteBuffer input) {
    super.parse(input);

    version = input.getShort();
    revision = input.getShort();
    vendor = NIOUtils.readString(input, 4);
    temporalQual = input.getInt();
    spacialQual = input.getInt();

    width = input.getShort();
    height = input.getShort();

    hRes = (float) input.getInt() / 65536f;
    vRes = (float) input.getInt() / 65536f;

    input.getInt(); // Reserved

    frameCount = input.getShort();

    compressorName = NIOUtils.readPascalString(input, 31);

    depth = input.getShort();

    clrTbl = input.getShort();

    parseExtensions(input);
}
 
开发者ID:ihmcrobotics,项目名称:ihmc-video-codecs,代码行数:28,代码来源:VideoSampleEntry.java


注:本文中的org.jcodec.common.NIOUtils.readString方法示例由纯净天空整理自Github/MSDocs等开源代码及文档管理平台,相关代码片段筛选自各路编程大神贡献的开源项目,源码版权归原作者所有,传播和使用请参考对应项目的License;未经允许,请勿转载。