summaryrefslogtreecommitdiff
path: root/libavformat/rtsp.c
diff options
context:
space:
mode:
authorRonald S. Bultje <rsbultje@gmail.com>2009-01-09 23:44:52 +0000
committerRonald S. Bultje <rsbultje@gmail.com>2009-01-09 23:44:52 +0000
commit9211bcddb40be355f8e65e6142175d6b5d939b76 (patch)
tree0e4b04c1e94cf65a9af34b56e81953f5930c185c /libavformat/rtsp.c
parentff16f551cfb8fd36ba505f7bc08d04866fa856cb (diff)
Reindent to properly fit a 80 chars terminal.
Originally committed as revision 16511 to svn://svn.ffmpeg.org/ffmpeg/trunk
Diffstat (limited to 'libavformat/rtsp.c')
-rw-r--r--libavformat/rtsp.c9
1 files changed, 5 insertions, 4 deletions
diff --git a/libavformat/rtsp.c b/libavformat/rtsp.c
index 1bccd28735..77ada043a7 100644
--- a/libavformat/rtsp.c
+++ b/libavformat/rtsp.c
@@ -506,10 +506,11 @@ static int sdp_parse(AVFormatContext *s, const char *content)
{
const char *p;
int letter;
- /* Some SDP lines, particularly for Realmedia or ASF RTSP streams, contain long SDP
- * lines containing complete ASF Headers (several kB) or arrays of MDPR (RM stream
- * descriptor) headers plus "rulebooks" describing their properties. Therefore, the
- * SDP line buffer is large. */
+ /* Some SDP lines, particularly for Realmedia or ASF RTSP streams,
+ * contain long SDP lines containing complete ASF Headers (several
+ * kB) or arrays of MDPR (RM stream descriptor) headers plus
+ * "rulebooks" describing their properties. Therefore, the SDP line
+ * buffer is large. */
char buf[8192], *q;
SDPParseState sdp_parse_state, *s1 = &sdp_parse_state;