Mercurial > libavformat.hg
comparison rtsp.h @ 6348:c709176da1ad libavformat
Preserve status reason
It is used to provide meaningful error messages.
author | lu_zero |
---|---|
date | Fri, 06 Aug 2010 10:26:30 +0000 |
parents | 736165b749f8 |
children | b7ee8424b7e6 |
comparison
equal
deleted
inserted
replaced
6347:e2834a83d6a8 | 6348:c709176da1ad |
---|---|
157 | 157 |
158 /** The "Notice" or "X-Notice" field value. See | 158 /** The "Notice" or "X-Notice" field value. See |
159 * http://tools.ietf.org/html/draft-stiemerling-rtsp-announce-00 | 159 * http://tools.ietf.org/html/draft-stiemerling-rtsp-announce-00 |
160 * for a complete list of supported values. */ | 160 * for a complete list of supported values. */ |
161 int notice; | 161 int notice; |
162 | |
163 /** The "reason" is meant to specify better the meaning of the error code | |
164 * returned | |
165 */ | |
166 char reason[256]; | |
162 } RTSPMessageHeader; | 167 } RTSPMessageHeader; |
163 | 168 |
164 /** | 169 /** |
165 * Client state, i.e. whether we are currently receiving data (PLAYING) or | 170 * Client state, i.e. whether we are currently receiving data (PLAYING) or |
166 * setup-but-not-receiving (PAUSED). State can be changed in applications | 171 * setup-but-not-receiving (PAUSED). State can be changed in applications |