AVResult.hx 2.3 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364
  1. package flash.media;
  2. extern class AVResult {
  3. var result(default,null) : Int;
  4. function new(inResult : Int) : Void;
  5. static var ASYNC_OPERATION_IN_PROGRESS : Int;
  6. static var BAD_MANIFEST_SIGNATURE : Int;
  7. static var BAD_MEDIA_INTERLEAVING : Int;
  8. static var CALLED_FROM_WRONG_THREAD : Int;
  9. static var CANNOT_FAIL_OVER : Int;
  10. static var CANNOT_LOAD_PLAY_LIST : Int;
  11. static var CODEC_NOT_SUPPORTED : Int;
  12. static var COMPONENT_CREATION_FAILURE : Int;
  13. static var CONTAINER_NOT_SUPPORTED : Int;
  14. static var CONTENT_LENGTH_MISMATCH : Int;
  15. static var CURRENT_PERIOD_EXPIRED : Int;
  16. static var DECODER_FAILED : Int;
  17. static var DEVICE_OPEN_ERROR : Int;
  18. static var DRM_INIT_ERROR : Int;
  19. static var DRM_NOT_AVAILABLE : Int;
  20. static var EOF : Int;
  21. static var FILE_NOT_FOUND : Int;
  22. static var FILE_STRUCTURE_INVALID : Int;
  23. static var FRAGMENT_READ_ERROR : Int;
  24. static var GENERIC_ERROR : Int;
  25. static var HTTP_TIME_OUT : Int;
  26. static var INVALID_OPERATION : Int;
  27. static var INVALID_PARAMETER : Int;
  28. static var INVALID_REPLACE_DURATION : Int;
  29. static var INVALID_SEEK_TIME : Int;
  30. static var INVALID_WITH_AUDIO_ONLY_FILE : Int;
  31. static var IRRECOVERABLE_ERROR : Int;
  32. static var LIVE_HOLD : Int;
  33. static var LIVE_WINDOW_MOVED_BACKWARD : Int;
  34. static var LOST_CONNECTION_RECOVERABLE : Int;
  35. static var NETWORK_DOWN : Int;
  36. static var NETWORK_ERROR : Int;
  37. static var NETWORK_UNAVAILABLE : Int;
  38. static var NOT_IMPLEMENTED : Int;
  39. static var NO_FIXED_SIZE : Int;
  40. static var NO_USEABLE_BITRATE_PROFILE : Int;
  41. static var ONLY_ALLOWED_IN_PAUSED_STATE : Int;
  42. static var OPERATION_ABORTED : Int;
  43. static var OUT_OF_MEMORY : Int;
  44. static var OVERFLOW : Int;
  45. static var PARSE_ERROR : Int;
  46. static var PERIOD_HOLD : Int;
  47. static var PERIOD_NOT_LOADED : Int;
  48. static var PLAYBACK_NOT_ENABLED : Int;
  49. static var PREVIOUS_STEP_SEEK_IN_PROGRESS : Int;
  50. static var RANGE_ERROR : Int;
  51. static var REPLACEMENT_FAILED : Int;
  52. static var RESOURCE_NOT_SPECIFIED : Int;
  53. static var SEEK_FAILED : Int;
  54. static var SIZE_UNKNOWN : Int;
  55. static var SUCCESS : Int;
  56. static var SWITCH_TO_ASYMMETRIC_PROFILE : Int;
  57. static var UNDERFLOW : Int;
  58. static var UNSUPPORTED_CONFIGURATION : Int;
  59. static var UNSUPPORTED_HLS_VERSION : Int;
  60. static var UNSUPPORTED_OPERATION : Int;
  61. static var VIDEO_PROFILE_NOT_SUPPORTED : Int;
  62. static var WAITING_FOR_INIT : Int;
  63. }