From 50efd3cad8b2a77d98b9e6b6637ef70fe70c6681 Mon Sep 17 00:00:00 2001 From: Anton Khirnov Date: Sun, 20 Nov 2011 12:45:36 +0100 Subject: md5enc: add flags AVFMT_NOTIMESTAMPS for md5, as it ignores the timestamps. AVFMT_VARIABLE_FPS for framemd5, as it prints dts. -vsync 0 for the vp8 test is needed because with vsync 2 the timestamp guessing code gets confused by an altref frame that is never displayed and drops a frame later. --- libavformat/md5enc.c | 2 ++ 1 file changed, 2 insertions(+) (limited to 'libavformat/md5enc.c') diff --git a/libavformat/md5enc.c b/libavformat/md5enc.c index dc8919a8c8..4509c18e84 100644 --- a/libavformat/md5enc.c +++ b/libavformat/md5enc.c @@ -75,6 +75,7 @@ AVOutputFormat ff_md5_muxer = { .write_header = write_header, .write_packet = write_packet, .write_trailer = write_trailer, + .flags = AVFMT_NOTIMESTAMPS, }; #endif @@ -102,5 +103,6 @@ AVOutputFormat ff_framemd5_muxer = { .audio_codec = CODEC_ID_PCM_S16LE, .video_codec = CODEC_ID_RAWVIDEO, .write_packet = framemd5_write_packet, + .flags = AVFMT_VARIABLE_FPS, }; #endif -- cgit v1.2.3