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