mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer.git
synced 2024-12-19 23:06:49 +00:00
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.
This commit is contained in:
parent
6984879ed6
commit
0587501517
3 changed files with 7 additions and 2 deletions
|
@ -1,3 +1,8 @@
|
|||
2005-08-09 Ronald S. Bultje <rbultje@ronald.bitfreak.net>
|
||||
|
||||
* ext/ffmpeg/gstffmpegcodecmap.c:
|
||||
Fix template to not allow fps=0.
|
||||
|
||||
2005-08-05 Ronald S. Bultje <rbultje@ronald.bitfreak.net>
|
||||
|
||||
* configure.ac:
|
||||
|
|
2
common
2
common
|
@ -1 +1 @@
|
|||
Subproject commit 694de4dbf4827f372321f0634643a254d7edd986
|
||||
Subproject commit 856fbbfa88621ab67df141ead8d4d3df32c5c176
|
|
@ -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)
|
||||
|
||||
|
|
Loading…
Reference in a new issue