Mercurial > libavformat.hg
changeset 4557:bfe6fb676d46 libavformat
Rename RTSPHeader to RTSPMessageHeader to reflect more clearly what the
structure is meant to represent. See "[PATCH] rtsp.[ch]: RTSPHeader ->
RTSPServerResponse" and "[PATCH] document rtsp.h" threads on ML.
author | rbultje |
---|---|
date | Sat, 21 Feb 2009 22:26:44 +0000 |
parents | 72475783652f |
children | e95945e51b63 |
files | rtsp.c rtsp.h |
diffstat | 2 files changed, 12 insertions(+), 12 deletions(-) [+] |
line wrap: on
line diff
--- a/rtsp.c Sat Feb 21 21:30:44 2009 +0000 +++ b/rtsp.c Sat Feb 21 22:26:44 2009 +0000 @@ -570,7 +570,7 @@ } /* XXX: only one transport specification is parsed */ -static void rtsp_parse_transport(RTSPHeader *reply, const char *p) +static void rtsp_parse_transport(RTSPMessageHeader *reply, const char *p) { char transport_protocol[16]; char profile[16]; @@ -672,7 +672,7 @@ } } -void rtsp_parse_line(RTSPHeader *reply, const char *buf) +void rtsp_parse_line(RTSPMessageHeader *reply, const char *buf) { const char *p; @@ -738,7 +738,7 @@ } static void rtsp_send_cmd(AVFormatContext *s, - const char *cmd, RTSPHeader *reply, + const char *cmd, RTSPMessageHeader *reply, unsigned char **content_ptr) { RTSPState *rt = s->priv_data; @@ -888,7 +888,7 @@ RTSPState *rt = s->priv_data; int j, i, err, interleave = 0; RTSPStream *rtsp_st; - RTSPHeader reply1, *reply = &reply1; + RTSPMessageHeader reply1, *reply = &reply1; char cmd[2048]; const char *trans_pref; @@ -1064,7 +1064,7 @@ char host[1024], path[1024], tcpname[1024], cmd[2048], *option_list, *option; URLContext *rtsp_hd; int port, ret, err; - RTSPHeader reply1, *reply = &reply1; + RTSPMessageHeader reply1, *reply = &reply1; unsigned char *content = NULL; int lower_transport_mask = 0; char real_challenge[64]; @@ -1313,7 +1313,7 @@ if (rt->server_type == RTSP_SERVER_REAL) { int i; - RTSPHeader reply1, *reply = &reply1; + RTSPMessageHeader reply1, *reply = &reply1; enum AVDiscard cache[MAX_STREAMS]; char cmd[1024]; @@ -1421,7 +1421,7 @@ static int rtsp_read_play(AVFormatContext *s) { RTSPState *rt = s->priv_data; - RTSPHeader reply1, *reply = &reply1; + RTSPMessageHeader reply1, *reply = &reply1; char cmd[1024]; av_log(s, AV_LOG_DEBUG, "hello state=%d\n", rt->state); @@ -1451,7 +1451,7 @@ static int rtsp_read_pause(AVFormatContext *s) { RTSPState *rt = s->priv_data; - RTSPHeader reply1, *reply = &reply1; + RTSPMessageHeader reply1, *reply = &reply1; char cmd[1024]; rt = s->priv_data; @@ -1495,7 +1495,7 @@ static int rtsp_read_close(AVFormatContext *s) { RTSPState *rt = s->priv_data; - RTSPHeader reply1, *reply = &reply1; + RTSPMessageHeader reply1, *reply = &reply1; char cmd[1024]; #if 0
--- a/rtsp.h Sat Feb 21 21:30:44 2009 +0000 +++ b/rtsp.h Sat Feb 21 22:26:44 2009 +0000 @@ -59,7 +59,7 @@ enum RTSPLowerTransport lower_transport; } RTSPTransportField; -typedef struct RTSPHeader { +typedef struct RTSPMessageHeader { int content_length; enum RTSPStatusCode status_code; /**< response code from server */ int nb_transports; @@ -70,7 +70,7 @@ char session_id[512]; char real_challenge[64]; /**< the RealChallenge1 field from the server */ char server[64]; -} RTSPHeader; +} RTSPMessageHeader; enum RTSPClientState { RTSP_STATE_IDLE, @@ -126,7 +126,7 @@ } RTSPStream; int rtsp_init(void); -void rtsp_parse_line(RTSPHeader *reply, const char *buf); +void rtsp_parse_line(RTSPMessageHeader *reply, const char *buf); #if LIBAVFORMAT_VERSION_INT < (53 << 16) extern int rtsp_default_protocols;