diff rtsp.h @ 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 016f3d4fe56d
children 4a65c87ff3fd
line wrap: on
line diff
--- 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 */
 };