diff options
author | Sebastian Dröge <slomo@circular-chaos.org> | 2007-05-21 11:17:21 +0000 |
---|---|---|
committer | Sebastian Dröge <slomo@circular-chaos.org> | 2007-05-21 11:17:21 +0000 |
commit | 833add88eb3a60f67b0b598ae0be47e1359d6005 (patch) | |
tree | 06a353d38e8fe107b9378cfd334560e87b44b05b /ext/wavpack/gstwavpackenc.h | |
parent | e425c5f02b6b3b97b9b7bb044cc600d48bd00fea (diff) | |
download | gst-plugins-bad-833add88eb3a60f67b0b598ae0be47e1359d6005.tar.gz gst-plugins-bad-833add88eb3a60f67b0b598ae0be47e1359d6005.tar.bz2 gst-plugins-bad-833add88eb3a60f67b0b598ae0be47e1359d6005.zip |
ext/wavpack/gstwavpackenc.*: Fixup docs, make the bitrate property an int as it should be and allow to set the differ...
Original commit message from CVS:
* ext/wavpack/gstwavpackenc.c: (gst_wavpack_enc_class_init),
(gst_wavpack_enc_init), (gst_wavpack_enc_set_wp_config),
(gst_wavpack_enc_set_property), (gst_wavpack_enc_get_property):
* ext/wavpack/gstwavpackenc.h:
Fixup docs, make the bitrate property an int as it should be and
allow to set the different extra processing modes instead of only
allowing none and the default one.
Diffstat (limited to 'ext/wavpack/gstwavpackenc.h')
-rw-r--r-- | ext/wavpack/gstwavpackenc.h | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/ext/wavpack/gstwavpackenc.h b/ext/wavpack/gstwavpackenc.h index 617a2f64..243e8d7b 100644 --- a/ext/wavpack/gstwavpackenc.h +++ b/ext/wavpack/gstwavpackenc.h @@ -70,11 +70,12 @@ struct _GstWavpackEnc GstWavpackEncWriteID wvc_id; guint mode; - gdouble bitrate; + guint bitrate; + gdouble bps; guint correction_mode; gboolean md5; MD5_CTX *md5_context; - gboolean extra_processing; + guint extra_processing; guint joint_stereo_mode; void *first_block; |