lower sample_rate property minimum value to -1 to accoutn for default of -1

Original commit message from CVS:
lower sample_rate property minimum value to -1 to accoutn for default of -1
This commit is contained in:
David I. Lehn 2003-01-18 21:36:25 +00:00
parent ca19435d7a
commit 7e51a8b664

View file

@ -214,7 +214,7 @@ gst_ffmpegenc_class_init (GstFFMpegEncClass *klass)
0, G_MAXINT, 128000, G_PARAM_READWRITE));
g_object_class_install_property(G_OBJECT_CLASS (klass), ARG_SAMPLE_RATE,
g_param_spec_int ("sample_rate","rate","rate",
0, G_MAXINT, -1, G_PARAM_READWRITE));
-1, G_MAXINT, -1, G_PARAM_READWRITE));
g_object_class_install_property(G_OBJECT_CLASS (klass), ARG_HQ,
g_param_spec_boolean ("hq","hq","hq",
FALSE, G_PARAM_READWRITE));