aboutsummaryrefslogtreecommitdiffstats
path: root/libavformat/avformat.h
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/avformat.h
parent8a9d72a0ff1e46dfd42c600103ac107ec07ad518 (diff)
downloadffmpeg-ff9c8d7c6f58e052e4efae6e24defe08f956b03f.tar.gz
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/avformat.h')
-rw-r--r--libavformat/avformat.h1
1 files changed, 1 insertions, 0 deletions
diff --git a/libavformat/avformat.h b/libavformat/avformat.h
index 4ed35227c0..9c6168597b 100644
--- a/libavformat/avformat.h
+++ b/libavformat/avformat.h
@@ -187,6 +187,7 @@ typedef struct AVFormatParameters {
#define AVFMT_GLOBALHEADER 0x0040 /**< format wants global header */
#define AVFMT_NOTIMESTAMPS 0x0080 /**< format does not need / have any timestamps */
#define AVFMT_GENERIC_INDEX 0x0100 /**< use generic index building code */
+#define AVFMT_TS_DISCONT 0x0200 /**< format allows timestamo discontinuities */
typedef struct AVOutputFormat {
const char *name;