summaryrefslogtreecommitdiff
path: root/libavformat/avformat.h
diff options
context:
space:
mode:
authorMichael Niedermayer <michaelni@gmx.at>2009-02-24 15:04:18 +0000
committerMichael Niedermayer <michaelni@gmx.at>2009-02-24 15:04:18 +0000
commit259182121336fdb1d15be50b3693904f1e2879e7 (patch)
tree2bc16c5afe40a377d4f9f1ef7ffa00763407c3ac /libavformat/avformat.h
parent75d873314a1746994241fed62018605f1388b41b (diff)
Add AVFMT_VARIABLE_FPS to specify which muxers do not need duplicated frames.
Originally committed as revision 17554 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 2427f84077..6308940ce5 100644
--- a/libavformat/avformat.h
+++ b/libavformat/avformat.h
@@ -265,6 +265,7 @@ typedef struct AVFormatParameters {
#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_VARIABLE_FPS 0x0400 /**< Format allows variable fps. */
typedef struct AVOutputFormat {
const char *name;