hxerrors.h
上传用户:dangjiwu
上传日期:2013-07-19
资源大小:42019k
文件大小:12k
源码类别:

Symbian

开发平台:

Visual C++

  1. /* ***** BEGIN LICENSE BLOCK *****
  2.  * Source last modified: $Id: hxerrors.h,v 1.1.1.1.50.3 2004/07/09 01:45:08 hubbe Exp $
  3.  * 
  4.  * Portions Copyright (c) 1995-2004 RealNetworks, Inc. All Rights Reserved.
  5.  * 
  6.  * The contents of this file, and the files included with this file,
  7.  * are subject to the current version of the RealNetworks Public
  8.  * Source License (the "RPSL") available at
  9.  * http://www.helixcommunity.org/content/rpsl unless you have licensed
  10.  * the file under the current version of the RealNetworks Community
  11.  * Source License (the "RCSL") available at
  12.  * http://www.helixcommunity.org/content/rcsl, in which case the RCSL
  13.  * will apply. You may also obtain the license terms directly from
  14.  * RealNetworks.  You may not use this file except in compliance with
  15.  * the RPSL or, if you have a valid RCSL with RealNetworks applicable
  16.  * to this file, the RCSL.  Please see the applicable RPSL or RCSL for
  17.  * the rights, obligations and limitations governing use of the
  18.  * contents of the file.
  19.  * 
  20.  * Alternatively, the contents of this file may be used under the
  21.  * terms of the GNU General Public License Version 2 or later (the
  22.  * "GPL") in which case the provisions of the GPL are applicable
  23.  * instead of those above. If you wish to allow use of your version of
  24.  * this file only under the terms of the GPL, and not to allow others
  25.  * to use your version of this file under the terms of either the RPSL
  26.  * or RCSL, indicate your decision by deleting the provisions above
  27.  * and replace them with the notice and other provisions required by
  28.  * the GPL. If you do not delete the provisions above, a recipient may
  29.  * use your version of this file under the terms of any one of the
  30.  * RPSL, the RCSL or the GPL.
  31.  * 
  32.  * This file is part of the Helix DNA Technology. RealNetworks is the
  33.  * developer of the Original Code and owns the copyrights in the
  34.  * portions it created.
  35.  * 
  36.  * This file, and the files included with this file, is distributed
  37.  * and made available on an 'AS IS' basis, WITHOUT WARRANTY OF ANY
  38.  * KIND, EITHER EXPRESS OR IMPLIED, AND REALNETWORKS HEREBY DISCLAIMS
  39.  * ALL SUCH WARRANTIES, INCLUDING WITHOUT LIMITATION, ANY WARRANTIES
  40.  * OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE, QUIET
  41.  * ENJOYMENT OR NON-INFRINGEMENT.
  42.  * 
  43.  * Technology Compatibility Kit Test Suite(s) Location:
  44.  *    http://www.helixcommunity.org/content/tck
  45.  * 
  46.  * Contributor(s):
  47.  * 
  48.  * ***** END LICENSE BLOCK ***** */
  49. #ifdef __MWERKS__
  50. #pragma once
  51. #endif
  52. #ifndef _HXERRORS
  53. #define _HXERRORS
  54. enum HX_ERROR
  55. {
  56. HX_NO_ERROR = 0, // 0 
  57. HX_GENERAL_ERROR = 1, // 1 General error. An error occurred.
  58. HX_MEMORY_ERROR = 2, // 2 Out of memory.
  59. // state errors/return values
  60. HX_AT_INTERRUPT  = 3, // 3 Cannot process at interrupt level. Deferring request to system task level.
  61. HX_BUFFERING  = 4, // 4 Deferring request until after buffering is completed.
  62. HX_PAUSED  = 5, // 5 Paused.
  63. HX_NO_DATA  = 6, // 6 There is no data waiting to be processed.
  64. HX_AT_END  = 7, // 7 Arrived at the end of the document.
  65. HX_INVALID_PARAMETER  = 8, // 8 Invalid parameter. Unable to process request.
  66. HX_INVALID_OPERATION  = 9, // 9 Invalid operation. Cannot process request.
  67. HX_NOT_INITIALIZED_ERROR  = 10, // 10 Not initialized.
  68. // file errors
  69. HX_INVALID_RA_FILE  = 11, // 11 This document is not a RealAudio document.
  70. HX_INVALID_VERSION  = 12, // 12 Invalid RealAudio file version number.
  71. HX_INVALID_REVISION  = 13, // 13 Invalid revision number in RealAudio file.
  72. HX_DOC_MISSING_ERROR  = 14, // 14 Requested file not found. The link you followed may be outdated or inaccurate.
  73. HX_FORMAT_ERROR  = 15, // 15 Unknown data format.
  74. HX_CHUNK_MISSING  = 16, // 16 RealAudio file is missing the requested data chunk.
  75. HX_INVALID_INTERLEAVER  = 17, // 17 Cannot locate the requested interleaver.
  76. // server errors
  77. HX_NET_SOCKET_INVALID  = 18, // 18 Invalid socket error.
  78. HX_NET_CONNECT_ERROR  = 19, // 19 An error occurred while trying to connect to the RealAudio Server.
  79. HX_BIND_ERROR  = 20, // 20 An error occurred binding to network socket.
  80. HX_SOCKET_CREATE_ERROR  = 21, // 21 An error occurred while creating a network socket.
  81. HX_INVALID_HOST  = 22, // 22 Requested server is not valid.
  82. HX_INVALID_PATH  = 23, // 23 Requested URL is not valid.
  83. HX_NET_READ_ERROR  = 24, // 24 An error occurred while reading data from the network.
  84. HX_NET_WRITE_ERROR = 25, // 25 An error occurred while writing data to the network.
  85. HX_NET_UDP_ERROR  = 26, // 26 Player cannot receive UDP data packets. You may wish to try the TCP data option in the Network Preferences. 
  86. //    You may also want to configure your player to use a firewall proxy. Please contact your system administrator for 
  87. //    more information.
  88. HX_RETRY_ERROR  = 27, // 27 Attempting to reconnect to the RealAudio server.
  89. HX_SERVER_TIMEOUT  = 28, // 28 Server timeout. Server not responding.
  90. HX_SERVER_DISCONNECTED  = 29, // 29 Server disconnected. The server may be too busy or not available at this time.
  91. HX_DNR_ERROR  = 30, // 30 Cannot resolve the requested network address.
  92. HX_OPEN_DRIVER_ERROR  = 31, // 31 Cannot open the network drivers.
  93. HX_WOULD_BLOCK_ERROR  = 32, // 32 Network operation would block.
  94. HX_UPGRADE_ERROR  = 33, // 33 You need a newer client to access this server. Please upgrade.
  95. HX_BAD_SERVER_ERROR  = 34, // 34 This server is not using a recognized protocol.
  96. HX_ADVANCED_SERVER_ERROR  = 35, // 35 You need a newer client to access this server. Please upgrade.
  97. HX_OLD_SERVER_ERROR  = 36, // 36 Connection closed. The host's version of the RealAudio Server is too old for this client.
  98.   
  99. // decoder errors
  100. HX_DEC_INITED  = 37, // 37 RealAudio Decoder is initialized.
  101. HX_DEC_NOT_FOUND  = 38, // 38 File compression not supported. Cannot locate the requested RealAudio decoder.
  102. HX_DEC_INVALID  = 39, // 39 Invalid decoder.
  103. HX_DEC_TYPE_MISMATCH  = 40, // 40 Decoder type mismatch. Cannot load the requested decoder.
  104. HX_DEC_INIT_FAILED  = 41, // 41 Requested RealAudio Decoder cannot be found or cannot be used on this machine.
  105. HX_DEC_NOT_INITED  = 42, // 42 RealAudio Decoder was not initialized before attempting to use it.
  106. HX_DEC_DECOMPRESS_ERROR  = 43, // 43 An error occurred during decoding.
  107. HX_REDIRECTION  = 44, // 44 Client is being redirected to a new server.
  108. HX_SERVER_ALERT  = 45, // 45 Server alert.
  109. // proxy errors
  110. HX_PROXY_ERROR  = 46, // 46 Proxy status error.
  111. HX_PROXY_RESPONSE_ERROR  = 47, // 47 Proxy invalid response error.
  112. HX_ADVANCED_PROXY_ERROR  = 48, // 48 You need a newer client to access this proxy. Please upgrade.
  113. HX_OLD_PROXY_ERROR  = 49, // 49 Connection closed. The proxy is too old for this client.
  114. // audio errors
  115. HX_AUDIO_DRIVER_ERROR  = 50, // 50 Cannot open audio device.
  116. // parsing errors
  117. HX_INVALID_PROTOCOL_ERROR  = 51, // 51 Invalid protocol specified in URL.
  118. HX_INVALID_URL_OPTION_ERROR = 52, // 52 Invalid option specified in URL.
  119. HX_INVALID_URL_HOST  = 53, // 53 Invalid host string in requested URL.
  120. HX_INVALID_URL_PATH  = 54, // 54 Invalid resource path string in requested URL.
  121. HX_GENERAL_NONET  = 55, // 55 Error locating Winsock Services.
  122. // notification errors
  123. HX_NOTIFICATION_ERROR  = 56, // 56 Error sending notification to client.
  124. HX_NOT_NOTIFIED  = 57, // 57, Not an ERROR... This is a code used to indicate that the client did not request to recieve the notification.
  125. HX_STOPPED  = 58, // 58, Not sent to user, the clip has reached the end or has been terminated.
  126. HX_OPEN_NOT_PROCESSED  = 59, // 59, Not sent to user, Open command have not been processed (to many connections opened).
  127. HX_BLOCK_CANCELED  = 60, // 60, Not sent to user, Blocking call was canceled.
  128. HX_CLOSED  = 61, // 61, Not send to user, the clip was previously closed.
  129. // encoder errors
  130. HX_ENC_FILE_TOO_SMALL  = 62, // 62, File is too small.
  131. HX_ENC_UNKNOWN_FILE  = 63, // 63, Unknown file type.
  132. HX_ENC_BAD_CHANNELS  = 64, // 64, Invalid number of encoder channels.
  133. HX_ENC_BAD_SAMPSIZE   = 65, // 65, Invalid encoder sample size.
  134. HX_ENC_BAD_SAMPRATE  = 66, // 66, Invalid encoder sample rate.
  135. HX_ENC_INVALID              = 67,   // 67, Invalid encoder.
  136.     HX_ENC_NO_OUTPUT_FILE       = 68,   // 68, Output file not found.
  137.     HX_ENC_NO_INPUT_FILE        = 69,   // 69, Input file not found.
  138. HX_ENC_NO_OUTPUT_PERMISSIONS= 70, // 70, Encoder output permission error.
  139. HX_ENC_BAD_FILETYPE         = 71,   // 71, Input file type not supported.
  140. // errors related to expiration
  141. HX_EXPIRED = 72, // 72, This product is expired. Please upgrade to the latest version from http://www.realaudio.com.
  142.    
  143. // $Comstrip:  IF SDK
  144. // HX_RESERVED_ERROR_1 = 73, // 73 
  145. // HX_COULDNOTINITCORE_ERROR = 74, // 74, An error occurred while initializing the RealAudio Daemon.
  146. // HX_RESERVED_ERROR_2 = 75, // 75
  147. // HX_RESERVED_ERROR_3 = 76, // 76
  148. // HX_RESERVED_ERROR_4 = 77, // 77
  149. // HX_RESERVED_ERROR_5 = 78, // 78
  150. // $Comstrip:  ELSE
  151. HX_RECORD_ERROR = 73, // 73, An error occurred while trying to record the clip. The clip was not recorded.
  152. HX_COULDNOTINITCORE_ERROR = 74, // 74, An error occurred while initializing the RealAudio Daemon.
  153. HX_PERFECTPLAY_NOT_SUPPORTED= 75, // 75, Requested server does not support PerfectPlay.
  154. HX_NO_LIVE_PERFECTPLAY = 76, // 76, PerfectPlay not supported for live streams.
  155. HX_RECORD_WRITE_ERROR = 77, // 77, An error occurred while recording clip to file.
  156. HX_PERFECTPLAY_NOT_ALLOWED = 78, // 78, PerfectPlay not allowed on this clip.
  157. HX_INVALID_WAV_FILE = 79 // 79, File is not a RIFF WAV file.
  158. ,HX_INVALID_PROTOCOL = 80 // 80, Protocol not supported by server.
  159. ,HX_NO_SEEK = 81 // 81, No seek possible.
  160. ,HX_INVALID_STREAM = 82 // 82, Invalid .RM stream.
  161. ,HX_TEMP_FILE_ERROR = 83 // 83, An error occurred accessing a temporary file.
  162. ,HX_MULTICAST_JOIN_ERROR = 84 // 84, An error occurred attempting to join multicast session.
  163. ,HX_GENERAL_MULTICAST_ERROR = 85 // 85, An error occurred accessing a multicast session.
  164. ,HX_MULTICAST_UDP_ERROR = 86 // 86, Player cannot receive audio data from the multicast session. You may wish to try the TCP data option in the Network Preferences. Please contact your system administrator for more information.
  165. ,HX_NO_CODECS = 87 // 87, No RealAudio Codecs have been installed on your system.
  166. ,HX_SLOW_MACHINE = 88 // 88, Your machine does not have enough CPU power to play this file in real time. If you are accessing a network link, you may try setting your bandwidth to a smaller value, since bandwidth usage is often related to playback complexity. 
  167. ,HX_FORCE_PERFECTPLAY  = 89 // 89, server protocol < 10, must reconnect in TCP mode for PerfectPlay to work
  168. ,HX_INVALID_HTTP_PROXY_HOST = 90 // 90, Invalid hostname for HTTP proxy.
  169. //
  170. // errors added for the video encoder
  171. //
  172. ,HX_ENC_INVALID_VIDEO = 91 // 91, The source file contains an unsupported video format
  173. ,HX_ENC_INVALID_AUDIO = 92 // 92, The source file contains an unsupported audio format
  174. ,HX_ENC_NO_VIDEO_CAPTURE = 93 // 93, Unable to initialize the video capture device
  175. ,HX_ENC_INVALID_VIDEO_CAPTURE = 94 // 94, The video capture device format is unsupported
  176. ,HX_ENC_NO_AUDIO_CAPTURE = 95 // 95, Unable to initialize the audio capture device
  177. ,HX_ENC_INVALID_AUDIO_CAPTURE = 96 // 96, The audio capture device format is unsupported
  178. ,HX_ENC_TOO_SLOW_FOR_LIVE = 97 // 97, Not enough resources to maintain live encoding
  179. ,HX_ENC_ENGINE_NOT_INITIALIZED = 98 // 98, The encoding engine is not initialized
  180. ,HX_ENC_CODEC_NOT_FOUND = 99 // 99, The requested codec was not found
  181. ,HX_ENC_CODEC_NOT_INITIALIZED = 100 // 100, Codec initialization failed
  182. ,HX_ENC_INVALID_INPUT_DIMENSIONS = 101 // 101, Invalid input video frame dimensions
  183. //
  184. // errors added for rtsl parsing
  185. //
  186. ,HX_INVALID_METAFILE = 102 // 102, Invalid RTSL file
  187. ,HX_NO_RENDERER = 103 // 103, Renderer not found
  188. ,HX_NO_FILEFORMAT = 104 // 104, File format not found
  189. ,HX_UNSUPPORTED_VIDEO = 105 // 105, The file contains an unsupported video format
  190. ,HX_UNSUPPORTED_AUDIO = 106 // 106, The file contains an unsupported audio format
  191. ,HX_LAST_ERROR_POS // used to mark end of HX_ERROR enum
  192. };
  193. #endif  // _HXERRORS