diff options
author | Martin Storsjö <martin@martin.st> | 2010-02-19 16:26:21 +0000 |
---|---|---|
committer | Ronald S. Bultje <rsbultje@gmail.com> | 2010-02-19 16:26:21 +0000 |
commit | c02fd3d2e886bcdc82ad52972376310156040c38 (patch) | |
tree | d4ebac97c03524ef5736ff0f443cf6f4cdbf04f7 /libavformat/rtsp.h | |
parent | aa170ed62563479beb8e4e3b74bdcead35cbc366 (diff) | |
download | ffmpeg-c02fd3d2e886bcdc82ad52972376310156040c38.tar.gz |
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>.
Originally committed as revision 21896 to svn://svn.ffmpeg.org/ffmpeg/trunk
Diffstat (limited to 'libavformat/rtsp.h')
-rw-r--r-- | libavformat/rtsp.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/libavformat/rtsp.h b/libavformat/rtsp.h index dbd444b983..a0aac17028 100644 --- a/libavformat/rtsp.h +++ b/libavformat/rtsp.h @@ -158,7 +158,7 @@ typedef struct RTSPMessageHeader { */ 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 */ }; |