Android Media Player错误和HLS

时间:2014-04-29 12:40:00

标签: android streaming android-mediaplayer

我需要一组本地Android Media Player在onError()方法中尝试播放HLS流时可能会抛出的错误...换句话说,如果媒体播放器不能播放会出现什么样的错误处理特定设备上的hls ...这里列出了所有已知错误,以简化操作。我甚至感谢消除错误,如果它是关于流格式肯定不会被抛出

MEDIA_ERROR_BASE        = -1000,

ERROR_ALREADY_CONNECTED = MEDIA_ERROR_BASE,      // -1000
ERROR_NOT_CONNECTED     = MEDIA_ERROR_BASE - 1,  // -1001
ERROR_UNKNOWN_HOST      = MEDIA_ERROR_BASE - 2,  // -1002
ERROR_CANNOT_CONNECT    = MEDIA_ERROR_BASE - 3,  // -1003
ERROR_IO                = MEDIA_ERROR_BASE - 4,  // -1004
ERROR_CONNECTION_LOST   = MEDIA_ERROR_BASE - 5,  // -1005
ERROR_MALFORMED         = MEDIA_ERROR_BASE - 7,  // -1007
ERROR_OUT_OF_RANGE      = MEDIA_ERROR_BASE - 8,  // -1008
ERROR_BUFFER_TOO_SMALL  = MEDIA_ERROR_BASE - 9,  // -1009
ERROR_UNSUPPORTED       = MEDIA_ERROR_BASE - 10, // -1010
ERROR_END_OF_STREAM     = MEDIA_ERROR_BASE - 11, // -1011

// Not technically an error.
INFO_FORMAT_CHANGED    = MEDIA_ERROR_BASE - 12,  // -1012
INFO_DISCONTINUITY     = MEDIA_ERROR_BASE - 13,  // -1013

ERROR_NO_LICENSE       = MEDIA_ERROR_BASE - 14,  // -1014

0 个答案:

没有答案