summaryrefslogtreecommitdiff
path: root/ffserver.c
diff options
context:
space:
mode:
authorRonald S. Bultje <rsbultje@gmail.com>2009-02-05 17:00:10 +0000
committerRonald S. Bultje <rsbultje@gmail.com>2009-02-05 17:00:10 +0000
commitb516ecdd1267ce93ddf4c0b6c6436152d1c95a1e (patch)
tree9943e732788b322a21f0ae51653ec4955e8f765b /ffserver.c
parent21da81d7844237609bba1f02cec8eff936055f4d (diff)
Delete an enum and a function typedef that aren't used anywhere, and
move move a struct/typedef in rtsp.h that is only used in ffserver.c into ffserver.c. See "[PATCH] rtsp.h: move/remove unused thingies" thread on ML. Originally committed as revision 17005 to svn://svn.ffmpeg.org/ffmpeg/trunk
Diffstat (limited to 'ffserver.c')
-rw-r--r--ffserver.c5
1 files changed, 5 insertions, 0 deletions
diff --git a/ffserver.c b/ffserver.c
index 1fc3e656c2..8bfea66c2a 100644
--- a/ffserver.c
+++ b/ffserver.c
@@ -103,6 +103,11 @@ static const char *http_state[] = {
#define SYNC_TIMEOUT (10 * 1000)
+typedef struct RTSPActionServerSetup {
+ uint32_t ipaddr;
+ char transport_option[512];
+} RTSPActionServerSetup;
+
typedef struct {
int64_t count1, count2;
int64_t time1, time2;