mirror of
https://github.com/axiomatic-systems/Bento4.git
synced 2026-01-26 16:28:24 +08:00
11 lines
347 B
Java
11 lines
347 B
Java
package com.axiosys.bento4;
|
|
|
|
import java.io.IOException;
|
|
import java.io.RandomAccessFile;
|
|
|
|
public class MpegSampleEntry extends SampleEntry {
|
|
MpegSampleEntry(int format, int size, RandomAccessFile source, AtomFactory atomFactory) throws IOException, InvalidFormatException {
|
|
super(format, size, source, atomFactory);
|
|
}
|
|
}
|