diff options
author | Sebastian Dröge <slomo@circular-chaos.org> | 2006-08-16 10:40:04 +0000 |
---|---|---|
committer | Tim-Philipp Müller <tim@centricular.net> | 2006-08-16 10:40:04 +0000 |
commit | f349fb381066e316a38e3a068cb287ce36684a5f (patch) | |
tree | 8d454c6eccd9a3243b2d29bd66a7cc7c6b5c6d8c /ext/wavpack/gstwavpackenc.c | |
parent | 058dec01f1356d6dbb0a2d3d053ed6558fa3504e (diff) | |
download | gst-plugins-bad-f349fb381066e316a38e3a068cb287ce36684a5f.tar.gz gst-plugins-bad-f349fb381066e316a38e3a068cb287ce36684a5f.tar.bz2 gst-plugins-bad-f349fb381066e316a38e3a068cb287ce36684a5f.zip |
ext/wavpack/: In push mode, re-sync to next wavpack header if sync is lost (#351557). Also use hyphens instead of und...
Original commit message from CVS:
Patch by: Sebastian Dröge <slomo at circular-chaos.org>
* ext/wavpack/gstwavpackenc.c: (gst_wavpack_enc_class_init):
* ext/wavpack/gstwavpackparse.c:
(gst_wavpack_parse_resync_adapter), (gst_wavpack_parse_chain):
In push mode, re-sync to next wavpack header if sync is lost
(#351557). Also use hyphens instead of underscores in
GObject property names.
Diffstat (limited to 'ext/wavpack/gstwavpackenc.c')
-rw-r--r-- | ext/wavpack/gstwavpackenc.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/ext/wavpack/gstwavpackenc.c b/ext/wavpack/gstwavpackenc.c index 60ab40a2..d5cd0191 100644 --- a/ext/wavpack/gstwavpackenc.c +++ b/ext/wavpack/gstwavpackenc.c @@ -238,7 +238,7 @@ gst_wavpack_enc_class_init (GstWavpackEncClass * klass) "This enables lossy encoding! A value smaller than 2.0 disables this.", 0.0, 24.0, 0.0, G_PARAM_READWRITE)); g_object_class_install_property (gobject_class, ARG_CORRECTION_MODE, - g_param_spec_enum ("correction_mode", "Correction file mode", + g_param_spec_enum ("correction-mode", "Correction file mode", "Use this mode for correction file creation. Only works in lossy mode!", GST_TYPE_WAVPACK_ENC_CORRECTION_MODE, DEFAULT_CORRECTION_MODE, G_PARAM_READWRITE)); @@ -247,10 +247,10 @@ gst_wavpack_enc_class_init (GstWavpackEncClass * klass) "Store MD5 hash of raw samples within the file.", FALSE, G_PARAM_READWRITE)); g_object_class_install_property (gobject_class, ARG_EXTRA_PROCESSING, - g_param_spec_boolean ("extra_processing", "Extra processing", + g_param_spec_boolean ("extra-processing", "Extra processing", "Extra encode processing.", FALSE, G_PARAM_READWRITE)); g_object_class_install_property (gobject_class, ARG_JOINT_STEREO_MODE, - g_param_spec_enum ("joint_stereo_mode", "Joint-Stereo mode", + g_param_spec_enum ("joint-stereo-mode", "Joint-Stereo mode", "Use this joint-stereo mode.", GST_TYPE_WAVPACK_ENC_JOINT_STEREO_MODE, DEFAULT_JS_MODE, G_PARAM_READWRITE)); } |