AVABRProfileInfo.hx 408 B

1234567891011
  1. package flash.media;
  2. extern class AVABRProfileInfo {
  3. @:flash.property var bitsPerSecond(get,never) : Int;
  4. @:flash.property var height(get,never) : Int;
  5. @:flash.property var width(get,never) : Int;
  6. function new(init_bitsPerSecond : Int, init_width : Int, init_height : Int) : Void;
  7. private function get_bitsPerSecond() : Int;
  8. private function get_height() : Int;
  9. private function get_width() : Int;
  10. }