From 9155be47d1e94f392ef8066f911c49e2a19358bc Mon Sep 17 00:00:00 2001 From: Kostya Shishkov Date: Tue, 15 Sep 2009 16:36:53 +0000 Subject: Do not set 0 FPS in VC-1 test stream format demuxer. Originally committed as revision 19863 to svn://svn.ffmpeg.org/ffmpeg/trunk --- libavformat/vc1test.c | 4 ++++ 1 file changed, 4 insertions(+) (limited to 'libavformat/vc1test.c') diff --git a/libavformat/vc1test.c b/libavformat/vc1test.c index e55772a171..11a4a6f4a7 100644 --- a/libavformat/vc1test.c +++ b/libavformat/vc1test.c @@ -73,6 +73,10 @@ static int vc1t_read_header(AVFormatContext *s, if(fps == 0xFFFFFFFF) av_set_pts_info(st, 32, 1, 1000); else{ + if (!fps) { + av_log(s, AV_LOG_ERROR, "Zero FPS specified, defaulting to 1 FPS\n"); + fps = 1; + } av_set_pts_info(st, 24, 1, fps); st->duration = frames; } -- cgit v1.2.3