[FFmpeg-devel] [PATCH] ffserver: add NULL context to ff_rtsp_parse_line().

Nicolas George george at nsup.org
Sun Nov 29 17:01:52 CET 2015


Needed after f62fe53/2c17fb6.

Signed-off-by: Nicolas George <george at nsup.org>
---
 ffserver.c | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)


Fix build failure. I am not sure if we can find a relevant context.


diff --git a/ffserver.c b/ffserver.c
index 7e4f620..65ae431 100644
--- a/ffserver.c
+++ b/ffserver.c
@@ -2837,7 +2837,7 @@ static int rtsp_parse_request(HTTPContext *c)
             len = sizeof(line) - 1;
         memcpy(line, p, len);
         line[len] = '\0';
-        ff_rtsp_parse_line(header, line, NULL, NULL);
+        ff_rtsp_parse_line(NULL, header, line, NULL, NULL);
         p = p1 + 1;
     }
 
-- 
2.6.2



More information about the ffmpeg-devel mailing list