projects
/
ffmpeg.git
/ blobdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
|
commitdiff
|
tree
raw
| inline |
side by side
Increase SDP line buffer size because ASF headers in RTSP-MS are very big. See ML...
[ffmpeg.git]
/
libavformat
/
rtsp.c
diff --git
a/libavformat/rtsp.c
b/libavformat/rtsp.c
index
134910c
..
b1f2a84
100644
(file)
--- a/
libavformat/rtsp.c
+++ b/
libavformat/rtsp.c
@@
-563,7
+563,7
@@
static int sdp_parse(AVFormatContext *s, const char *content)
{
const char *p;
int letter;
- char buf[
2048
], *q;
+ char buf[
8192
], *q;
SDPParseState sdp_parse_state, *s1 = &sdp_parse_state;
memset(s1, 0, sizeof(SDPParseState));