From 0587501517aa64be4999636b079ac3d5400658c8 Mon Sep 17 00:00:00 2001 From: "Ronald S. Bultje" Date: Tue, 9 Aug 2005 17:08:23 +0000 Subject: [PATCH] ext/ffmpeg/gstffmpegcodecmap.c: Fix template to not allow fps=0. Original commit message from CVS: * ext/ffmpeg/gstffmpegcodecmap.c: Fix template to not allow fps=0. --- ChangeLog | 5 +++++ common | 2 +- ext/ffmpeg/gstffmpegcodecmap.c | 2 +- 3 files changed, 7 insertions(+), 2 deletions(-) diff --git a/ChangeLog b/ChangeLog index 79138d3..c1a6c73 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,3 +1,8 @@ +2005-08-09 Ronald S. Bultje + + * ext/ffmpeg/gstffmpegcodecmap.c: + Fix template to not allow fps=0. + 2005-08-05 Ronald S. Bultje * configure.ac: diff --git a/common b/common index 694de4d..856fbbf 160000 --- a/common +++ b/common @@ -1 +1 @@ -Subproject commit 694de4dbf4827f372321f0634643a254d7edd986 +Subproject commit 856fbbfa88621ab67df141ead8d4d3df32c5c176 diff --git a/ext/ffmpeg/gstffmpegcodecmap.c b/ext/ffmpeg/gstffmpegcodecmap.c index 78b5f49..c167933 100644 --- a/ext/ffmpeg/gstffmpegcodecmap.c +++ b/ext/ffmpeg/gstffmpegcodecmap.c @@ -94,7 +94,7 @@ gst_ffmpeg_set_palette (GstCaps *caps, AVCodecContext *context) gst_caps_new_simple (mimetype, \ "width", GST_TYPE_INT_RANGE, 16, 4096, \ "height", GST_TYPE_INT_RANGE, 16, 4096, \ - "framerate", GST_TYPE_DOUBLE_RANGE, (double) 0., \ + "framerate", GST_TYPE_DOUBLE_RANGE, (double) 1., \ G_MAXDOUBLE, \ __VA_ARGS__, NULL) -- 2.7.4