Mercurial > libavformat.hg
changeset 5670:7fa188f69c22 libavformat
Rename RTSP_STATE_PLAYING to _STREAMING, since that better covers the
future use of the rtsp* codebase for RTSP muxing.
Patch by Martin Storsj <$firstname $firstname st>.
author | rbultje |
---|---|
date | Fri, 19 Feb 2010 16:26:21 +0000 |
parents | 1a4847823fe6 |
children | 4a65c87ff3fd |
files | rtsp.c rtsp.h |
diffstat | 2 files changed, 7 insertions(+), 7 deletions(-) [+] |
line wrap: on
line diff
--- a/rtsp.c Fri Feb 19 06:59:47 2010 +0000 +++ b/rtsp.c Fri Feb 19 16:26:21 2010 +0000 @@ -1249,7 +1249,7 @@ return -1; } } - rt->state = RTSP_STATE_PLAYING; + rt->state = RTSP_STATE_STREAMING; return 0; } @@ -1488,7 +1488,7 @@ rtsp_read_reply(s, &reply, NULL, 0); /* XXX: parse message */ - if (rt->state != RTSP_STATE_PLAYING) + if (rt->state != RTSP_STATE_STREAMING) return 0; } #endif @@ -1516,7 +1516,7 @@ if (ret == 1) /* received '$' */ break; /* XXX: parse message */ - if (rt->state != RTSP_STATE_PLAYING) + if (rt->state != RTSP_STATE_STREAMING) return 0; } ret = url_read_complete(rt->rtsp_hd, buf, 3); @@ -1667,7 +1667,7 @@ return AVERROR_INVALIDDATA; rt->need_subscription = 0; - if (rt->state == RTSP_STATE_PLAYING) + if (rt->state == RTSP_STATE_STREAMING) rtsp_read_play (s); } } @@ -1702,7 +1702,7 @@ rt = s->priv_data; - if (rt->state != RTSP_STATE_PLAYING) + if (rt->state != RTSP_STATE_STREAMING) return 0; else if (!(rt->server_type == RTSP_SERVER_REAL && rt->need_subscription)) { snprintf(cmd, sizeof(cmd), @@ -1729,7 +1729,7 @@ default: case RTSP_STATE_IDLE: break; - case RTSP_STATE_PLAYING: + case RTSP_STATE_STREAMING: if (rtsp_read_pause(s) != 0) return -1; rt->state = RTSP_STATE_SEEKING;
--- a/rtsp.h Fri Feb 19 06:59:47 2010 +0000 +++ b/rtsp.h Fri Feb 19 16:26:21 2010 +0000 @@ -158,7 +158,7 @@ */ enum RTSPClientState { RTSP_STATE_IDLE, /**< not initialized */ - RTSP_STATE_PLAYING, /**< initialized and receiving data */ + RTSP_STATE_STREAMING, /**< initialized and sending/receiving data */ RTSP_STATE_PAUSED, /**< initialized, but not receiving data */ RTSP_STATE_SEEKING, /**< initialized, requesting a seek */ };