AVResult.hx 4.3 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108
  1. package flash.media;
  2. extern class AVResult {
  3. @:flash.property var result(get,never) : Int;
  4. function new(inResult : Int) : Void;
  5. private function get_result() : Int;
  6. static final ASYNC_OPERATION_IN_PROGRESS : Int;
  7. static final AUDIO_ONLY_STREAM_END : Int;
  8. static final AUDIO_ONLY_STREAM_START : Int;
  9. static final AUDIO_START_ERROR : Int;
  10. static final BAD_MANIFEST_SIGNATURE : Int;
  11. static final BAD_MEDIASAMPLE_FOUND : Int;
  12. static final BAD_MEDIA_INTERLEAVING : Int;
  13. static final CALLED_FROM_WRONG_THREAD : Int;
  14. static final CANNOT_ERASE_TIMELINE : Int;
  15. static final CANNOT_FAIL_OVER : Int;
  16. static final CANNOT_HANDLE_MAIN_MANIFEST_UPDATE : Int;
  17. static final CANNOT_LOAD_PLAY_LIST : Int;
  18. static final CANNOT_SPLIT_TIMELINE : Int;
  19. static final CODEC_NOT_SUPPORTED : Int;
  20. static final COMPONENT_CREATION_FAILURE : Int;
  21. static final CONTAINER_NOT_SUPPORTED : Int;
  22. static final CONTENT_LENGTH_MISMATCH : Int;
  23. static final CRYPTO_ALGORITHM_NOT_SUPPORTED : Int;
  24. static final CRYPTO_ERROR_BAD_CERTIFICATE : Int;
  25. static final CRYPTO_ERROR_BAD_PARAMETER : Int;
  26. static final CRYPTO_ERROR_BUFFER_TOO_SMALL : Int;
  27. static final CRYPTO_ERROR_CORRUPTED_DATA : Int;
  28. static final CRYPTO_ERROR_DIGEST_FINISH : Int;
  29. static final CRYPTO_ERROR_DIGEST_UPDATE : Int;
  30. static final CRYPTO_ERROR_UNKNOWN : Int;
  31. static final CURRENT_PERIOD_EXPIRED : Int;
  32. static final DECODER_FAILED : Int;
  33. static final DEVICE_OPEN_ERROR : Int;
  34. static final DID_NOT_GET_NEXT_FRAGMENT : Int;
  35. static final DRM_INIT_ERROR : Int;
  36. static final DRM_NOT_AVAILABLE : Int;
  37. static final END_OF_PERIOD : Int;
  38. static final EOF : Int;
  39. static final FILE_NOT_FOUND : Int;
  40. static final FILE_OPEN_ERROR : Int;
  41. static final FILE_READ_ERROR : Int;
  42. static final FILE_STRUCTURE_INVALID : Int;
  43. static final FILE_WRITE_ERROR : Int;
  44. static final FRAGMENT_READ_ERROR : Int;
  45. static final GENERIC_ERROR : Int;
  46. static final HTTP_TIME_OUT : Int;
  47. static final ID3_PARSE_ERROR : Int;
  48. static final INCOMPATIBLE_RENDER_MODE : Int;
  49. static final INCOMPATIBLE_VERSION : Int;
  50. static final INTERNAL_ERROR : Int;
  51. static final INVALID_KEY : Int;
  52. static final INVALID_OPERATION : Int;
  53. static final INVALID_PARAMETER : Int;
  54. static final INVALID_REPLACE_DURATION : Int;
  55. static final INVALID_SEEK_TIME : Int;
  56. static final INVALID_WITH_AUDIO_ONLY_FILE : Int;
  57. static final IRRECOVERABLE_ERROR : Int;
  58. static final KEY_NOT_FOUND : Int;
  59. static final KEY_SERVER_NOT_FOUND : Int;
  60. static final LISTENER_NOT_FOUND : Int;
  61. static final LIVE_HOLD : Int;
  62. static final LIVE_WINDOW_MOVED_BACKWARD : Int;
  63. static final LOST_CONNECTION_RECOVERABLE : Int;
  64. static final MAIN_MANIFEST_UPDATE_TO_BE_HANDLED : Int;
  65. static final MANIFEST_FILE_UNEXPECTEDLY_CHANGED : Int;
  66. static final NETWORK_DOWN : Int;
  67. static final NETWORK_ERROR : Int;
  68. static final NETWORK_UNAVAILABLE : Int;
  69. static final NOT_IMPLEMENTED : Int;
  70. static final NO_AUDIO_SINK : Int;
  71. static final NO_FIXED_SIZE : Int;
  72. static final NO_TIMELINE : Int;
  73. static final NO_USEABLE_BITRATE_PROFILE : Int;
  74. static final NULL_OPERATION : Int;
  75. static final ONLY_ALLOWED_IN_PAUSED_STATE : Int;
  76. static final OPERATION_ABORTED : Int;
  77. static final OUT_OF_MEMORY : Int;
  78. static final OVERFLOW : Int;
  79. static final PARSE_ERROR : Int;
  80. static final PARTIAL_REPLACEMENT : Int;
  81. static final PERIOD_HOLD : Int;
  82. static final PERIOD_NOT_LOADED : Int;
  83. static final PLAYBACK_NOT_ENABLED : Int;
  84. static final POSTROLL_WITH_LIVE_NOT_ALLOWED : Int;
  85. static final PREVIOUS_STEP_SEEK_IN_PROGRESS : Int;
  86. static final PROTOCOL_NOT_SUPPORTED : Int;
  87. static final RANGE_ERROR : Int;
  88. static final RANGE_SPANS_READHEAD : Int;
  89. static final RENDITION_M3U8_ERROR : Int;
  90. static final REPLACEMENT_FAILED : Int;
  91. static final RESOURCE_NOT_SPECIFIED : Int;
  92. static final SECURITY_ERROR : Int;
  93. static final SEEK_FAILED : Int;
  94. static final SEGMENT_SKIPPED_ON_FAILURE : Int;
  95. static final SIZE_UNKNOWN : Int;
  96. static final SPS_PPS_FOUND_OUTSIDE_AVCC : Int;
  97. static final SUCCESS : Int;
  98. static final SWITCH_TO_ASYMMETRIC_PROFILE : Int;
  99. static final TIMELINE_TOO_SHORT : Int;
  100. static final UNDERFLOW : Int;
  101. static final UNREPORTED_TIME_DISCONTINUITY_FOUND : Int;
  102. static final UNSUPPORTED_CONFIGURATION : Int;
  103. static final UNSUPPORTED_HLS_VERSION : Int;
  104. static final UNSUPPORTED_OPERATION : Int;
  105. static final VIDEO_PROFILE_NOT_SUPPORTED : Int;
  106. static final WAITING_FOR_INIT : Int;
  107. }