diff options
author | Sebastian Dröge <mail@slomosnail.de> | 2006-06-10 15:33:18 +0000 |
---|---|---|
committer | Tim-Philipp Müller <tim@centricular.net> | 2006-06-10 15:33:18 +0000 |
commit | 522f2492c46175f2bfdb623c8a56ddd22b4327af (patch) | |
tree | cdf23e7539c1f79debe9317628f6c04ca84a9255 /ext/wavpack/Makefile.am | |
parent | a916520e6c55ec09d49e03f12e09bfe7ebf39800 (diff) | |
download | gst-plugins-bad-522f2492c46175f2bfdb623c8a56ddd22b4327af.tar.gz gst-plugins-bad-522f2492c46175f2bfdb623c8a56ddd22b4327af.tar.bz2 gst-plugins-bad-522f2492c46175f2bfdb623c8a56ddd22b4327af.zip |
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/Makefile.am')
-rw-r--r-- | ext/wavpack/Makefile.am | 15 |
1 files changed, 12 insertions, 3 deletions
diff --git a/ext/wavpack/Makefile.am b/ext/wavpack/Makefile.am index 3a3fae3b..9220fd78 100644 --- a/ext/wavpack/Makefile.am +++ b/ext/wavpack/Makefile.am @@ -1,13 +1,22 @@ plugin_LTLIBRARIES = libgstwavpack.la -libgstwavpack_la_SOURCES = gstwavpack.c \ +libgstwavpack_la_SOURCES = \ + gstwavpack.c \ gstwavpackcommon.c \ gstwavpackparse.c \ - gstwavpackdec.c + gstwavpackdec.c \ + gstwavpackenc.c \ + md5.c libgstwavpack_la_CFLAGS = $(GST_CFLAGS) $(WAVPACK_CFLAGS) libgstwavpack_la_LIBADD = $(GST_LIBS) $(WAVPACK_LIBS) libgstwavpack_la_LDFLAGS = $(GST_PLUGIN_LDFLAGS) -noinst_HEADERS = gstwavpackparse.h gstwavpackdec.h gstwavpackcommon.h +noinst_HEADERS = \ + gstwavpackparse.h \ + gstwavpackdec.h \ + gstwavpackenc.h \ + gstwavpackcommon.h \ + md5.h + |