diff options
author | Diego Biurrun <diego@biurrun.de> | 2012-01-30 09:38:41 +0100 |
---|---|---|
committer | Diego Biurrun <diego@biurrun.de> | 2012-01-30 10:19:47 +0100 |
commit | a846202343af7c56bf444ec47d4bb26a5d2b83ce (patch) | |
tree | 53ded6c373f2210134d324795db8431da593ef81 /libavformat/rtsp.c | |
parent | 8b933129b932f523a746e921a0a20b8dd8816971 (diff) | |
download | ffmpeg-a846202343af7c56bf444ec47d4bb26a5d2b83ce.tar.gz |
rtsp: Remove some unused variables from ff_rtsp_connect().
Diffstat (limited to 'libavformat/rtsp.c')
-rw-r--r-- | libavformat/rtsp.c | 1 |
1 files changed, 0 insertions, 1 deletions
diff --git a/libavformat/rtsp.c b/libavformat/rtsp.c index cdcda7eb67..1fb7b2bcda 100644 --- a/libavformat/rtsp.c +++ b/libavformat/rtsp.c @@ -1357,7 +1357,6 @@ int ff_rtsp_connect(AVFormatContext *s) { RTSPState *rt = s->priv_data; char host[1024], path[1024], tcpname[1024], cmd[2048], auth[128]; - char *option_list, *option, *filename; int port, err, tcp_fd; RTSPMessageHeader reply1 = {0}, *reply = &reply1; int lower_transport_mask = 0; |