summaryrefslogtreecommitdiff
path: root/libavformat/wtv.c
diff options
context:
space:
mode:
authorAlex Converse <alex.converse@gmail.com>2011-10-04 23:43:59 -0700
committerAlex Converse <alex.converse@gmail.com>2011-10-28 14:54:13 -0700
commitc3bc6096f234151a09f79c6d1c0360bc08dde9d8 (patch)
tree2eee89c12f670ccaf2c0b62578a4964fa157dfac /libavformat/wtv.c
parent476d04a56ac499b9a5a081646d9737d956f24130 (diff)
mpegts: Add support for multiple mp4 descriptors
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 4defc14e3c..f848968d72 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, 0, 0, 0, 0);
+ ff_parse_mpeg2_descriptor(s, st, 0, &pbuf, buf + buf_size, NULL, 0, 0);
}
} else if (!ff_guidcmp(g, EVENTID_AudioTypeSpanningEvent)) {
int stream_index = ff_find_stream_index(s, sid);