mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer.git
synced 2025-02-16 03:05:32 +00:00
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:
parent
ca19435d7a
commit
7e51a8b664
1 changed files with 1 additions and 1 deletions
|
@ -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));
|
||||
|
|
Loading…
Reference in a new issue