diff options
author | Michael Niedermayer <michaelni@gmx.at> | 2010-02-12 20:35:29 +0000 |
---|---|---|
committer | Michael Niedermayer <michaelni@gmx.at> | 2010-02-12 20:35:29 +0000 |
commit | ab5a0175f5ab90ad8c27beb8b9f12e99c846e83c (patch) | |
tree | 73d830659813db830b491967d7715a26205cf6ac /libavformat/img2.c | |
parent | 3566042a0dfd7c016e6e9945e63699dd7296adb2 (diff) | |
download | ffmpeg-ab5a0175f5ab90ad8c27beb8b9f12e99c846e83c.tar.gz |
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/img2.c')
-rw-r--r-- | libavformat/img2.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/libavformat/img2.c b/libavformat/img2.c index 124f135ddb..0610ae1ee5 100644 --- a/libavformat/img2.c +++ b/libavformat/img2.c @@ -446,7 +446,7 @@ AVOutputFormat image2_muxer = { img_write_header, img_write_packet, NULL, - .flags= AVFMT_NOTIMESTAMPS | AVFMT_NOFILE + .flags= AVFMT_NOTIMESTAMPS | AVFMT_NODIMENSIONS | AVFMT_NOFILE }; #endif #if CONFIG_IMAGE2PIPE_MUXER @@ -460,6 +460,6 @@ AVOutputFormat image2pipe_muxer = { CODEC_ID_MJPEG, img_write_header, img_write_packet, - .flags= AVFMT_NOTIMESTAMPS + .flags= AVFMT_NOTIMESTAMPS | AVFMT_NODIMENSIONS }; #endif |