]> git.sesse.net Git - ffmpeg/blobdiff - libavformat/wtv.c
rtsp: Set http custom headers via the AVOption
[ffmpeg] / libavformat / wtv.c
index f848968d724bb2b4abc705566186f3bb44bc1279..c3bc083201f424be45cc523850a10a2300e44bb5 100644 (file)
@@ -33,7 +33,6 @@
 #include "riff.h"
 #include "asf.h"
 #include "mpegts.h"
-#include <strings.h>
 
 /* Macros for formating GUIDs */
 #define PRI_GUID \
@@ -837,7 +836,7 @@ static int parse_chunks(AVFormatContext *s, int mode, int64_t seekts, int *len_p
                 buf_size = FFMIN(len - consumed, sizeof(buf));
                 avio_read(pb, buf, buf_size);
                 consumed += buf_size;
-                ff_parse_mpeg2_descriptor(s, st, 0, &pbuf, buf + buf_size, NULL, 0, 0);
+                ff_parse_mpeg2_descriptor(s, st, 0, &pbuf, buf + buf_size, NULL, 0, 0, NULL);
             }
         } else if (!ff_guidcmp(g, EVENTID_AudioTypeSpanningEvent)) {
             int stream_index = ff_find_stream_index(s, sid);