summaryrefslogtreecommitdiff
path: root/libavformat/avformat.h
diff options
context:
space:
mode:
authorMichael Niedermayer <michaelni@gmx.at>2010-02-12 20:35:29 +0000
committerMichael Niedermayer <michaelni@gmx.at>2010-02-12 20:35:29 +0000
commitab5a0175f5ab90ad8c27beb8b9f12e99c846e83c (patch)
tree73d830659813db830b491967d7715a26205cf6ac /libavformat/avformat.h
parent3566042a0dfd7c016e6e9945e63699dd7296adb2 (diff)
Add flag so muxers not needing width/height can signal this.
Add this flag to img2 (fixes -vcodec copy to image2 in some cases) Originally committed as revision 21773 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 28e042971c..2e8770a0a3 100644
--- a/libavformat/avformat.h
+++ b/libavformat/avformat.h
@@ -242,6 +242,7 @@ typedef struct AVFormatParameters {
#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. */
+#define AVFMT_NODIMENSIONS 0x0800 /**< Format does not need width/height */
typedef struct AVOutputFormat {
const char *name;