summaryrefslogtreecommitdiffstats
path: root/ext/wavpack/gstwavpack.c
diff options
context:
space:
mode:
authorSebastian Dröge <mail@slomosnail.de>2006-06-10 15:33:18 +0000
committerTim-Philipp Müller <tim@centricular.net>2006-06-10 15:33:18 +0000
commitb9ea984f76271c708b31bf876de17296acc14ef7 (patch)
treeefabf9c9f41954d3f573b8725ed38482245b576b /ext/wavpack/gstwavpack.c
parent42a1b1e7562413fc889311c1b6f6e46eed7fd163 (diff)
ext/wavpack/: Add wavpack encoder element (#343131).
Original commit message from CVS: Patch by: Sebastian Dröge <mail at slomosnail de> * ext/wavpack/Makefile.am: * ext/wavpack/gstwavpack.c: (plugin_init): * ext/wavpack/gstwavpackcommon.h: * ext/wavpack/gstwavpackenc.c: (gst_wavpack_enc_mode_get_type), (gst_wavpack_enc_correction_mode_get_type), (gst_wavpack_enc_joint_stereo_mode_get_type), (gst_wavpack_enc_base_init), (gst_wavpack_enc_class_init), (gst_wavpack_enc_init), (gst_wavpack_enc_dispose), (gst_wavpack_enc_sink_set_caps), (gst_wavpack_enc_set_wp_config), (gst_wavpack_enc_format_samples), (gst_wavpack_enc_push_block), (gst_wavpack_enc_chain), (gst_wavpack_enc_rewrite_first_block), (gst_wavpack_enc_sink_event), (gst_wavpack_enc_change_state), (gst_wavpack_enc_set_property), (gst_wavpack_enc_get_property), (gst_wavpack_enc_plugin_init): * ext/wavpack/gstwavpackenc.h: * ext/wavpack/md5.c: * ext/wavpack/md5.h: Add wavpack encoder element (#343131).
Diffstat (limited to 'ext/wavpack/gstwavpack.c')
-rw-r--r--ext/wavpack/gstwavpack.c6
1 files changed, 4 insertions, 2 deletions
diff --git a/ext/wavpack/gstwavpack.c b/ext/wavpack/gstwavpack.c
index 5a734220..912b583a 100644
--- a/ext/wavpack/gstwavpack.c
+++ b/ext/wavpack/gstwavpack.c
@@ -25,16 +25,18 @@
#include "gstwavpackparse.h"
#include "gstwavpackdec.h"
+#include "gstwavpackenc.h"
static gboolean
plugin_init (GstPlugin * plugin)
{
return (gst_wavpack_parse_plugin_init (plugin)
- && gst_wavpack_dec_plugin_init (plugin));
+ && gst_wavpack_dec_plugin_init (plugin)
+ && gst_wavpack_enc_plugin_init (plugin));
}
GST_PLUGIN_DEFINE (GST_VERSION_MAJOR,
GST_VERSION_MINOR,
"wavpack",
"Wavpack lossless/lossy audio format handling",
- plugin_init, VERSION, "LGPL", "gst-wavpack", "http://www.wavpack.com")
+ plugin_init, VERSION, "LGPL", GST_PACKAGE_NAME, GST_PACKAGE_ORIGIN)