summaryrefslogtreecommitdiff
path: root/libavformat/wtv.c
diff options
context:
space:
mode:
authorAlex Converse <alex.converse@gmail.com>2011-10-05 18:24:17 -0700
committerAlex Converse <alex.converse@gmail.com>2011-10-28 14:54:14 -0700
commit4682a1dc3aa2554ad7077f5db32d0f2d598d018e (patch)
tree086dd233a90e105597624b711b29138011f9a83e /libavformat/wtv.c
parentfec2836483c15f169c3f8be39347978f1698ae8d (diff)
mpegts: Add support for Sections in PMT
Diffstat (limited to 'libavformat/wtv.c')
-rw-r--r--libavformat/wtv.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/libavformat/wtv.c b/libavformat/wtv.c
index f848968d72..cdb5c49fb6 100644
--- a/libavformat/wtv.c
+++ b/libavformat/wtv.c
@@ -837,7 +837,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);