diff options
author | Ronald S. Bultje <rsbultje@gmail.com> | 2009-02-05 17:00:10 +0000 |
---|---|---|
committer | Ronald S. Bultje <rsbultje@gmail.com> | 2009-02-05 17:00:10 +0000 |
commit | b516ecdd1267ce93ddf4c0b6c6436152d1c95a1e (patch) | |
tree | 9943e732788b322a21f0ae51653ec4955e8f765b /ffserver.c | |
parent | 21da81d7844237609bba1f02cec8eff936055f4d (diff) | |
download | ffmpeg-b516ecdd1267ce93ddf4c0b6c6436152d1c95a1e.tar.gz |
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.c | 5 |
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; |