summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorChristian Schaller <uraeus@gnome.org>2003-07-23 19:11:04 +0000
committerChristian Schaller <uraeus@gnome.org>2003-07-23 19:11:04 +0000
commit762f5381be6edfe22243cc94abf3e18b84a466b1 (patch)
treee86a73cfb764805d728724c60e8dd3bfec9121c9
parent62be4fca184996610ead67f84d5ca461a8c62c21 (diff)
downloadgstreamer-plugins-base-762f5381be6edfe22243cc94abf3e18b84a466b1.tar.gz
I'm too lazy to comment this
Original commit message from CVS: fix for bug 112014, patch reviewed by ds
-rw-r--r--ext/vorbis/vorbisenc.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/ext/vorbis/vorbisenc.c b/ext/vorbis/vorbisenc.c
index ded0c5de8..7ed7178ca 100644
--- a/ext/vorbis/vorbisenc.c
+++ b/ext/vorbis/vorbisenc.c
@@ -145,7 +145,7 @@ gst_vorbisenc_class_init (VorbisEncClass * klass)
g_object_class_install_property (G_OBJECT_CLASS (klass), ARG_QUALITY,
g_param_spec_float ("quality", "Quality",
"Specify quality instead of specifying a particular bitrate.",
- -1.0, 10.0, QUALITY_DEFAULT, G_PARAM_READWRITE));
+ 0.0, 1.0, QUALITY_DEFAULT, G_PARAM_READWRITE));
g_object_class_install_property (G_OBJECT_CLASS (klass), ARG_SERIAL,
g_param_spec_int ("serial", "Serial", "Specify a serial number for the stream. (-1 is random)",
-1, G_MAXINT, -1, G_PARAM_READWRITE));