Merge Aether tools
This commit is contained in:
15
tools/mpeg/audio/Info.hx
Normal file
15
tools/mpeg/audio/Info.hx
Normal file
@@ -0,0 +1,15 @@
|
||||
package mpeg.audio;
|
||||
|
||||
import haxe.io.Bytes;
|
||||
|
||||
class Info {
|
||||
public var header(default, null):FrameHeader;
|
||||
public var infoStartIndex(default, null):Int;
|
||||
public var frameData(default, null):Bytes;
|
||||
|
||||
public function new(header:FrameHeader, startIndex:Int, frameData:Bytes) {
|
||||
this.header = header;
|
||||
this.infoStartIndex = startIndex;
|
||||
this.frameData = frameData;
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user