summaryrefslogtreecommitdiff
path: root/ext/vp8
diff options
context:
space:
mode:
authorSebastian Dröge <sebastian.droege@collabora.co.uk>2010-05-22 12:55:45 +0200
committerSebastian Dröge <sebastian.droege@collabora.co.uk>2010-06-01 11:19:46 +0200
commitb43afeffd79f7f2b4655b539c65b8b6af9d982e3 (patch)
tree1c6c9bbbad59b0433dee26420954e99d9fce8c28 /ext/vp8
parent1a95b2911523020b8b99218c98e6f4e0d2d5a1fb (diff)
downloadgstreamer-plugins-bad-b43afeffd79f7f2b4655b539c65b8b6af9d982e3.tar.gz
vp8enc: Allow a maximum keyframe distance of 0, i.e. all frames are keyframes
Diffstat (limited to 'ext/vp8')
-rw-r--r--ext/vp8/gstvp8enc.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/ext/vp8/gstvp8enc.c b/ext/vp8/gstvp8enc.c
index 285473cae..99476202f 100644
--- a/ext/vp8/gstvp8enc.c
+++ b/ext/vp8/gstvp8enc.c
@@ -279,7 +279,7 @@ gst_vp8_enc_class_init (GstVP8EncClass * klass)
g_object_class_install_property (gobject_class, PROP_MAX_KEYFRAME_DISTANCE,
g_param_spec_int ("max-keyframe-distance", "Maximum Key frame distance",
"Maximum distance between key frames",
- 1, 9999, DEFAULT_MAX_KEYFRAME_DISTANCE,
+ 0, 9999, DEFAULT_MAX_KEYFRAME_DISTANCE,
(GParamFlags) (G_PARAM_READWRITE | G_PARAM_STATIC_STRINGS)));
g_object_class_install_property (gobject_class, PROP_SPEED,