diff options
author | Michael Niedermayer <michaelni@gmx.at> | 2009-02-24 15:04:18 +0000 |
---|---|---|
committer | Michael Niedermayer <michaelni@gmx.at> | 2009-02-24 15:04:18 +0000 |
commit | 259182121336fdb1d15be50b3693904f1e2879e7 (patch) | |
tree | 2bc16c5afe40a377d4f9f1ef7ffa00763407c3ac /libavformat/nutenc.c | |
parent | 75d873314a1746994241fed62018605f1388b41b (diff) | |
download | ffmpeg-259182121336fdb1d15be50b3693904f1e2879e7.tar.gz |
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/nutenc.c')
-rw-r--r-- | libavformat/nutenc.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/libavformat/nutenc.c b/libavformat/nutenc.c index cbea85da39..3482d5234a 100644 --- a/libavformat/nutenc.c +++ b/libavformat/nutenc.c @@ -820,6 +820,6 @@ AVOutputFormat nut_muxer = { write_header, write_packet, write_trailer, - .flags = AVFMT_GLOBALHEADER, + .flags = AVFMT_GLOBALHEADER | AVFMT_VARIABLE_FPS, .codec_tag= (const AVCodecTag* const []){codec_bmp_tags, codec_wav_tags, ff_nut_subtitle_tags, 0}, }; |