111111 XX(ERROR_STREAM_DISPOSING, 1098 , " StreamDisposing" , " Stream is disposing" ) \
112112 XX(ERROR_NOT_IMPLEMENTED, 1099 , " NotImplemented" , " Feature is not implemented" ) \
113113 XX(ERROR_NOT_SUPPORTED, 1100 , " NotSupported" , " Feature is not supported" ) \
114- XX(ERROR_SYSTEM_FILE_UNLINK, 1101 , " FileUnlink" , " Failed to unlink file" ) \
114+ XX(ERROR_SYSTEM_FILE_UNLINK, 1101 , " FileUnlink" , " Failed to unlink file" ) \
115115 XX(ERROR_SYSTEM_AUTH, 1102 , " SystemAuth" , " Failed to authenticate stream" )
116116
117-
118117/* *************************************************/
119118/* RTMP protocol error. */
120119#define SRS_ERRNO_MAP_RTMP (XX ) \
382381 XX(ERROR_RTSP_NO_TRACK, 5039 , " RtspNoTrack" , " Drop RTSP packet for track not found" ) \
383382 XX(ERROR_RTSP_TOKEN_NOT_NORMAL, 5040 , " RtspToken" , " Invalid RTSP token state not normal" ) \
384383 XX(ERROR_RTSP_REQUEST_HEADER_EOF, 5041 , " RtspHeaderEof" , " Invalid RTSP request for header EOF" ) \
385- XX(ERROR_RTSP_NEED_MORE_DATA, 5042 , " RtspNeedMoreData" , " Need more data to complete RTCP frame parsing" ) \
384+ XX(ERROR_RTSP_NEED_MORE_DATA, 5042 , " RtspNeedMoreData" , " Need more data to complete RTCP frame parsing" ) \
386385 XX(ERROR_RTC_INVALID_SDP, 5043 , " RtcInvalidSdp" , " Invalid SDP for RTC" )
387386
388387/* *************************************************/
@@ -492,7 +491,7 @@ class SrsCplxError
492491// }
493492#define srs_error_new (code, fmt, ...) SrsCplxError::create(__FUNCTION__, __FILE__, __LINE__, code, fmt, ##__VA_ARGS__)
494493
495- // Wrap an existing error with additional context. The error code is
494+ // Wrap an existing error with additional context. The error code is
496495// preserved from the wrapped error.
497496//
498497// Example:
@@ -501,8 +500,8 @@ class SrsCplxError
501500// }
502501#define srs_error_wrap (err, fmt, ...) SrsCplxError::wrap(__FUNCTION__, __FILE__, __LINE__, err, fmt, ##__VA_ARGS__)
503502
504- // Transform an error by wrapping it and changing its error code. Useful
505- // for converting internal errors to protocol-specific error codes (e.g.,
503+ // Transform an error by wrapping it and changing its error code. Useful
504+ // for converting internal errors to protocol-specific error codes (e.g.,
506505// HTTP, RTMP). The wrapped error chain is preserved.
507506//
508507// Example:
0 commit comments