summaryrefslogtreecommitdiff
path: root/libavformat/mpeg.c
diff options
context:
space:
mode:
authorMichael Niedermayer <michaelni@gmx.at>2008-08-15 16:13:05 +0000
committerMichael Niedermayer <michaelni@gmx.at>2008-08-15 16:13:05 +0000
commitff9c8d7c6f58e052e4efae6e24defe08f956b03f (patch)
tree8b8be973ce76658b268333e361357b4b2e02fdea /libavformat/mpeg.c
parent8a9d72a0ff1e46dfd42c600103ac107ec07ad518 (diff)
Add flag to mark demuxers that can output discontinuous timestamps.
(could also be added to muxers if someone wants) Originally committed as revision 14777 to svn://svn.ffmpeg.org/ffmpeg/trunk
Diffstat (limited to 'libavformat/mpeg.c')
-rw-r--r--libavformat/mpeg.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/libavformat/mpeg.c b/libavformat/mpeg.c
index 78fceee373..fc98ab82b2 100644
--- a/libavformat/mpeg.c
+++ b/libavformat/mpeg.c
@@ -586,5 +586,5 @@ AVInputFormat mpegps_demuxer = {
NULL,
NULL, //mpegps_read_seek,
mpegps_read_dts,
- .flags = AVFMT_SHOW_IDS,
+ .flags = AVFMT_SHOW_IDS|AVFMT_TS_DISCONT,
};