mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer.git
synced 2025-01-26 17:18:15 +00:00
ext, gst: canonicalise property names where this wasn't the case
ie. "foo_bar" -> "foo-bar"
This commit is contained in:
parent
bcde8c1b29
commit
d65eb2b91a
8 changed files with 21 additions and 21 deletions
|
@ -222,8 +222,8 @@ gst_aasink_class_init (GstAASinkClass * klass)
|
|||
g_object_class_install_property (G_OBJECT_CLASS (klass), ARG_GAMMA, g_param_spec_float ("gamma", "gamma", "gamma", 0.0, 5.0, 1.0, G_PARAM_READWRITE)); /* CHECKME */
|
||||
g_object_class_install_property (G_OBJECT_CLASS (klass), ARG_INVERSION, g_param_spec_boolean ("inversion", "inversion", "inversion", TRUE, G_PARAM_READWRITE)); /* CHECKME */
|
||||
g_object_class_install_property (G_OBJECT_CLASS (klass), ARG_RANDOMVAL, g_param_spec_int ("randomval", "randomval", "randomval", G_MININT, G_MAXINT, 0, G_PARAM_READWRITE)); /* CHECKME */
|
||||
g_object_class_install_property (G_OBJECT_CLASS (klass), ARG_FRAMES_DISPLAYED, g_param_spec_int ("frames_displayed", "frames_displayed", "frames_displayed", G_MININT, G_MAXINT, 0, G_PARAM_READABLE)); /* CHECKME */
|
||||
g_object_class_install_property (G_OBJECT_CLASS (klass), ARG_FRAME_TIME, g_param_spec_int ("frame_time", "frame_time", "frame_time", G_MININT, G_MAXINT, 0, G_PARAM_READABLE)); /* CHECKME */
|
||||
g_object_class_install_property (G_OBJECT_CLASS (klass), ARG_FRAMES_DISPLAYED, g_param_spec_int ("frames-displayed", "frames displayed", "frames displayed", G_MININT, G_MAXINT, 0, G_PARAM_READABLE)); /* CHECKME */
|
||||
g_object_class_install_property (G_OBJECT_CLASS (klass), ARG_FRAME_TIME, g_param_spec_int ("frame-time", "frame time", "frame time", G_MININT, G_MAXINT, 0, G_PARAM_READABLE)); /* CHECKME */
|
||||
|
||||
gst_aasink_signals[SIGNAL_FRAME_DISPLAYED] =
|
||||
g_signal_new ("frame-displayed", G_TYPE_FROM_CLASS (klass),
|
||||
|
|
|
@ -193,10 +193,10 @@ gst_dvdec_class_init (GstDVDecClass * klass)
|
|||
gobject_class->get_property = gst_dvdec_get_property;
|
||||
|
||||
g_object_class_install_property (G_OBJECT_CLASS (klass), PROP_CLAMP_LUMA,
|
||||
g_param_spec_boolean ("clamp_luma", "Clamp luma", "Clamp luma",
|
||||
g_param_spec_boolean ("clamp-luma", "Clamp luma", "Clamp luma",
|
||||
FALSE, G_PARAM_READWRITE));
|
||||
g_object_class_install_property (G_OBJECT_CLASS (klass), PROP_CLAMP_CHROMA,
|
||||
g_param_spec_boolean ("clamp_chroma", "Clamp chroma", "Clamp chroma",
|
||||
g_param_spec_boolean ("clamp-chroma", "Clamp chroma", "Clamp chroma",
|
||||
FALSE, G_PARAM_READWRITE));
|
||||
g_object_class_install_property (G_OBJECT_CLASS (klass), PROP_QUALITY,
|
||||
g_param_spec_enum ("quality", "Quality", "Decoding quality",
|
||||
|
|
|
@ -184,7 +184,7 @@ gst_esdmon_class_init (gpointer g_class, gpointer class_data)
|
|||
|
||||
parent_class = g_type_class_peek_parent (g_class);
|
||||
|
||||
g_object_class_install_property (gobject_class, ARG_BYTESPERREAD, g_param_spec_ulong ("bytes_per_read", "bytes_per_read", "bytes_per_read", 0, G_MAXULONG, 0, G_PARAM_READWRITE)); /* CHECKME */
|
||||
g_object_class_install_property (gobject_class, ARG_BYTESPERREAD, g_param_spec_ulong ("bytes-per-read", "bytes per read", "bytes per read", 0, G_MAXULONG, 0, G_PARAM_READWRITE)); /* CHECKME */
|
||||
g_object_class_install_property (gobject_class, ARG_CUROFFSET, g_param_spec_ulong ("curoffset", "curoffset", "curoffset", 0, G_MAXULONG, 0, G_PARAM_READABLE)); /* CHECKME */
|
||||
g_object_class_install_property (gobject_class, ARG_DEPTH, g_param_spec_enum ("depth", "depth", "depth", GST_TYPE_ESDMON_DEPTHS, 16, G_PARAM_READWRITE)); /* CHECKME! */
|
||||
g_object_class_install_property (gobject_class, ARG_CHANNELS, g_param_spec_enum ("channels", "channels", "channels", GST_TYPE_ESDMON_CHANNELS, 2, G_PARAM_READWRITE)); /* CHECKME! */
|
||||
|
|
|
@ -296,17 +296,17 @@ gst_flac_enc_class_init (GstFlacEncClass * klass)
|
|||
GST_TYPE_FLAC_ENC_QUALITY, DEFAULT_QUALITY,
|
||||
G_PARAM_READWRITE | G_PARAM_CONSTRUCT));
|
||||
g_object_class_install_property (G_OBJECT_CLASS (klass),
|
||||
PROP_STREAMABLE_SUBSET, g_param_spec_boolean ("streamable_subset",
|
||||
PROP_STREAMABLE_SUBSET, g_param_spec_boolean ("streamable-subset",
|
||||
"Streamable subset",
|
||||
"true to limit encoder to generating a Subset stream, else false",
|
||||
TRUE, G_PARAM_READWRITE | G_PARAM_CONSTRUCT));
|
||||
g_object_class_install_property (G_OBJECT_CLASS (klass), PROP_MID_SIDE_STEREO,
|
||||
g_param_spec_boolean ("mid_side_stereo", "Do mid side stereo",
|
||||
g_param_spec_boolean ("mid-side-stereo", "Do mid side stereo",
|
||||
"Do mid side stereo (only for stereo input)",
|
||||
flacenc_params[DEFAULT_QUALITY].mid_side,
|
||||
G_PARAM_READWRITE | G_PARAM_CONSTRUCT));
|
||||
g_object_class_install_property (G_OBJECT_CLASS (klass),
|
||||
PROP_LOOSE_MID_SIDE_STEREO, g_param_spec_boolean ("loose_mid_side_stereo",
|
||||
PROP_LOOSE_MID_SIDE_STEREO, g_param_spec_boolean ("loose-mid-side-stereo",
|
||||
"Loose mid side stereo", "Loose mid side stereo",
|
||||
flacenc_params[DEFAULT_QUALITY].loose_mid_side,
|
||||
G_PARAM_READWRITE | G_PARAM_CONSTRUCT));
|
||||
|
@ -316,53 +316,53 @@ gst_flac_enc_class_init (GstFlacEncClass * klass)
|
|||
flacenc_params[DEFAULT_QUALITY].blocksize,
|
||||
G_PARAM_READWRITE | G_PARAM_CONSTRUCT));
|
||||
g_object_class_install_property (G_OBJECT_CLASS (klass), PROP_MAX_LPC_ORDER,
|
||||
g_param_spec_uint ("max_lpc_order", "Max LPC order",
|
||||
g_param_spec_uint ("max-lpc-order", "Max LPC order",
|
||||
"Max LPC order; 0 => use only fixed predictors", 0,
|
||||
FLAC__MAX_LPC_ORDER, flacenc_params[DEFAULT_QUALITY].max_lpc_order,
|
||||
G_PARAM_READWRITE | G_PARAM_CONSTRUCT));
|
||||
g_object_class_install_property (G_OBJECT_CLASS (klass),
|
||||
PROP_QLP_COEFF_PRECISION, g_param_spec_uint ("qlp_coeff_precision",
|
||||
PROP_QLP_COEFF_PRECISION, g_param_spec_uint ("qlp-coeff-precision",
|
||||
"QLP coefficients precision",
|
||||
"Precision in bits of quantized linear-predictor coefficients; 0 = automatic",
|
||||
0, 32, flacenc_params[DEFAULT_QUALITY].qlp_coeff_precision,
|
||||
G_PARAM_READWRITE | G_PARAM_CONSTRUCT));
|
||||
g_object_class_install_property (G_OBJECT_CLASS (klass),
|
||||
PROP_QLP_COEFF_PREC_SEARCH, g_param_spec_boolean ("qlp_coeff_prec_search",
|
||||
PROP_QLP_COEFF_PREC_SEARCH, g_param_spec_boolean ("qlp-coeff-prec-search",
|
||||
"Do QLP coefficients precision search",
|
||||
"false = use qlp_coeff_precision, "
|
||||
"true = search around qlp_coeff_precision, take best",
|
||||
flacenc_params[DEFAULT_QUALITY].qlp_coeff_prec_search,
|
||||
G_PARAM_READWRITE | G_PARAM_CONSTRUCT));
|
||||
g_object_class_install_property (G_OBJECT_CLASS (klass), PROP_ESCAPE_CODING,
|
||||
g_param_spec_boolean ("escape_coding", "Do Escape coding",
|
||||
g_param_spec_boolean ("escape-coding", "Do Escape coding",
|
||||
"search for escape codes in the entropy coding stage "
|
||||
"for slightly better compression",
|
||||
flacenc_params[DEFAULT_QUALITY].escape_coding,
|
||||
G_PARAM_READWRITE | G_PARAM_CONSTRUCT));
|
||||
g_object_class_install_property (G_OBJECT_CLASS (klass),
|
||||
PROP_EXHAUSTIVE_MODEL_SEARCH,
|
||||
g_param_spec_boolean ("exhaustive_model_search",
|
||||
g_param_spec_boolean ("exhaustive-model-search",
|
||||
"Do exhaustive model search",
|
||||
"do exhaustive search of LP coefficient quantization (expensive!)",
|
||||
flacenc_params[DEFAULT_QUALITY].exhaustive_model_search,
|
||||
G_PARAM_READWRITE | G_PARAM_CONSTRUCT));
|
||||
g_object_class_install_property (G_OBJECT_CLASS (klass),
|
||||
PROP_MIN_RESIDUAL_PARTITION_ORDER,
|
||||
g_param_spec_uint ("min_residual_partition_order",
|
||||
g_param_spec_uint ("min-residual-partition-order",
|
||||
"Min residual partition order",
|
||||
"Min residual partition order (above 4 doesn't usually help much)", 0,
|
||||
16, flacenc_params[DEFAULT_QUALITY].min_residual_partition_order,
|
||||
G_PARAM_READWRITE | G_PARAM_CONSTRUCT));
|
||||
g_object_class_install_property (G_OBJECT_CLASS (klass),
|
||||
PROP_MAX_RESIDUAL_PARTITION_ORDER,
|
||||
g_param_spec_uint ("max_residual_partition_order",
|
||||
g_param_spec_uint ("max-residual-partition-order",
|
||||
"Max residual partition order",
|
||||
"Max residual partition order (above 4 doesn't usually help much)", 0,
|
||||
16, flacenc_params[DEFAULT_QUALITY].max_residual_partition_order,
|
||||
G_PARAM_READWRITE | G_PARAM_CONSTRUCT));
|
||||
g_object_class_install_property (G_OBJECT_CLASS (klass),
|
||||
PROP_RICE_PARAMETER_SEARCH_DIST,
|
||||
g_param_spec_uint ("rice_parameter_search_dist",
|
||||
g_param_spec_uint ("rice-parameter-search-dist",
|
||||
"rice_parameter_search_dist",
|
||||
"0 = try only calc'd parameter k; else try all [k-dist..k+dist] "
|
||||
"parameters, use best", 0, FLAC__MAX_RICE_PARTITION_ORDER,
|
||||
|
|
|
@ -183,10 +183,10 @@ gst_mikmod_class_init (GstMikModClass * klass)
|
|||
g_param_spec_boolean ("hqmixer", "hqmixer", "hqmixer",
|
||||
FALSE, G_PARAM_READWRITE));
|
||||
g_object_class_install_property (G_OBJECT_CLASS (klass), ARG_SOFT_MUSIC,
|
||||
g_param_spec_boolean ("soft_music", "soft_music", "soft_music",
|
||||
g_param_spec_boolean ("soft-music", "soft music", "soft music",
|
||||
TRUE, G_PARAM_READWRITE));
|
||||
g_object_class_install_property (G_OBJECT_CLASS (klass), ARG_SOFT_SNDFX,
|
||||
g_param_spec_boolean ("soft_sndfx", "soft_sndfx", "soft_sndfx",
|
||||
g_param_spec_boolean ("soft-sndfx", "soft sndfx", "soft sndfx",
|
||||
TRUE, G_PARAM_READWRITE));
|
||||
|
||||
|
||||
|
|
|
@ -220,7 +220,7 @@ gst_dv1394src_class_init (GstDV1394SrcClass * klass)
|
|||
g_param_spec_int ("skip", "skip frames", "skip n frames",
|
||||
0, G_MAXINT, DEFAULT_SKIP, G_PARAM_READWRITE));
|
||||
g_object_class_install_property (G_OBJECT_CLASS (klass), PROP_DROP_INCOMPLETE,
|
||||
g_param_spec_boolean ("drop_incomplete", "drop_incomplete",
|
||||
g_param_spec_boolean ("drop-incomplete", "drop incomplete",
|
||||
"drop incomplete frames", DEFAULT_DROP_INCOMPLETE,
|
||||
G_PARAM_READWRITE));
|
||||
g_object_class_install_property (G_OBJECT_CLASS (klass), PROP_USE_AVC,
|
||||
|
|
|
@ -161,7 +161,7 @@ gst_efence_class_init (GstEFenceClass * klass)
|
|||
gobject_class->get_property = gst_efence_get_property;
|
||||
|
||||
g_object_class_install_property (gobject_class, ARG_FENCE_TOP,
|
||||
g_param_spec_boolean ("fence_top", "Fence Top",
|
||||
g_param_spec_boolean ("fence-top", "Fence Top",
|
||||
"Align buffers with top of fenced region", TRUE, G_PARAM_READWRITE));
|
||||
}
|
||||
|
||||
|
|
|
@ -1635,7 +1635,7 @@ gst_rtp_bin_class_init (GstRtpBinClass * klass)
|
|||
G_PARAM_READWRITE));
|
||||
|
||||
g_object_class_install_property (gobject_class, PROP_IGNORE_PT,
|
||||
g_param_spec_boolean ("ignore_pt", "Ignore PT",
|
||||
g_param_spec_boolean ("ignore-pt", "Ignore PT",
|
||||
"Do not demultiplex based on PT values", DEFAULT_IGNORE_PT,
|
||||
G_PARAM_READWRITE));
|
||||
|
||||
|
|
Loading…
Reference in a new issue