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

org.yestech.multimedia.video.mpeg4.DataSample Maven / Gradle / Ivy

The newest version!
/*
 * Copyright LGPL3
 * YES Technology Association
 * http://yestech.org
 *
 * http://www.opensource.org/licenses/lgpl-3.0.html
 */
package org.yestech.multimedia.video.mpeg4;

/**
 * DataSample
 */
public final class DataSample {
	protected long offset;
	protected int size;
	
	public DataSample(long offset, int size) {
		super();
		this.offset = offset;
		this.size = size;
	}

	public long getOffset() {
		return offset;
	}

	public int getSize() {
		return size;
	}

}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy