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

com.mp4parser.iso14496.part15.TemporalSubLayerSampleGroup Maven / Gradle / Ivy

Go to download

A generic parser and writer for all ISO 14496 based files (MP4, Quicktime, DCF, PDCF, ...)

The newest version!
package com.mp4parser.iso14496.part15;

import com.googlecode.mp4parser.boxes.mp4.samplegrouping.GroupEntry;

import java.nio.ByteBuffer;

/**
 * This sample group is used to mark temporal layer access (TSA) samples. 
 */
public class TemporalSubLayerSampleGroup extends GroupEntry {
    public static final String TYPE = "tsas";
    int i;

    @Override
    public void parse(ByteBuffer byteBuffer) {
    }

    @Override
    public String getType() {
        return TYPE;
    }

    @Override
    public ByteBuffer get() {
        return ByteBuffer.allocate(0);
    }

    @Override
    public boolean equals(Object o) {
        if (this == o) return true;
        if (o == null || getClass() != o.getClass()) return false;


        return true;
    }

    @Override
    public int hashCode() {
        return 41;
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy