diff options
author | Michael Niedermayer <michaelni@gmx.at> | 2010-12-25 19:49:15 +0000 |
---|---|---|
committer | Michael Niedermayer <michaelni@gmx.at> | 2010-12-25 19:49:15 +0000 |
commit | 58ec7e00db5a78bb2d18b43b88e340f9c1373efa (patch) | |
tree | 45652fc348b7b4e274353a7ff97627c08792fa8b | |
parent | 13011def1f63abecdcb47aaa04a8468baf31196a (diff) | |
download | ffmpeg-58ec7e00db5a78bb2d18b43b88e340f9c1373efa.tar.gz |
Clarify AVFMT_TS_DISCONT and muxers.
Originally committed as revision 26089 to svn://svn.ffmpeg.org/ffmpeg/trunk
-rw-r--r-- | libavformat/avformat.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/libavformat/avformat.h b/libavformat/avformat.h index 3079b384b9..e8fb217bd9 100644 --- a/libavformat/avformat.h +++ b/libavformat/avformat.h @@ -320,7 +320,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 timestamp discontinuities. */ +#define AVFMT_TS_DISCONT 0x0200 /**< Format allows timestamp discontinuities. Note, muxers always require valid (monotone) timestamps */ #define AVFMT_VARIABLE_FPS 0x0400 /**< Format allows variable fps. */ #define AVFMT_NODIMENSIONS 0x0800 /**< Format does not need width/height */ |