Merge Aether tools

This commit is contained in:
Joshua Granick
2014-09-30 17:41:39 -07:00
parent f1e3707ad9
commit 540aa48c39
272 changed files with 35574 additions and 127 deletions

15
tools/mpeg/audio/Info.hx Normal file
View 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;
}
}