All Downloads are FREE. Search and download functionalities are using the official Maven repository.

org.red5.io.obu.OBPTileList Maven / Gradle / Ivy

There is a newer version: 2.0.17
Show newest version
package org.red5.io.obu;

public class OBPTileList {
    public byte outputFrameWidthInTilesMinus1;

    public byte outputFrameHeightInTilesMinus1;

    public short tileCountMinus1;

    public TileListEntry[] tileListEntry = new TileListEntry[65536];

    public static class TileListEntry {
        public byte anchorFrameIdx;

        public byte anchorTileRow;

        public byte anchorTileCol;

        public short tileDataSizeMinus1;

        public byte[] codedTileData;

        public long codedTileDataSize;
    }
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy