2003-04-14 01:20:30 +00:00
|
|
|
plugin_LTLIBRARIES = libgstaudioconvert.la
|
|
|
|
|
gst/audioconvert/: Implement a channel mixer.
Original commit message from CVS:
* gst/audioconvert/Makefile.am:
* gst/audioconvert/gstaudioconvert.c: (gst_audio_convert_init),
(gst_audio_convert_link), (gst_audio_convert_change_state),
(gst_audio_convert_channels):
* gst/audioconvert/gstchannelmix.c:
(gst_audio_convert_unset_matrix),
(gst_audio_convert_fill_identical),
(gst_audio_convert_fill_compatible),
(gst_audio_convert_detect_pos), (gst_audio_convert_fill_one_other),
(gst_audio_convert_fill_others),
(gst_audio_convert_fill_normalize),
(gst_audio_convert_fill_matrix), (gst_audio_convert_setup_matrix),
(gst_audio_convert_passthrough), (gst_audio_convert_mix):
* gst/audioconvert/gstchannelmix.h:
Implement a channel mixer.
2004-11-28 16:09:13 +00:00
|
|
|
libgstaudioconvert_la_SOURCES = \
|
|
|
|
gstaudioconvert.c \
|
|
|
|
gstchannelmix.c \
|
|
|
|
bufferframesconvert.c \
|
|
|
|
plugin.c
|
|
|
|
|
2003-04-14 01:20:30 +00:00
|
|
|
libgstaudioconvert_la_CFLAGS = $(GST_CFLAGS)
|
2005-07-13 17:58:07 +00:00
|
|
|
libgstaudioconvert_la_LDFLAGS = $(GST_PLUGIN_LDFLAGS)
|
|
|
|
libgstaudioconvert_la_LIBADD = \
|
|
|
|
$(top_builddir)/gst-libs/gst/audio/libgstaudio-@GST_MAJORMINOR@.la \
|
|
|
|
$(GST_LIBS)
|
gst/audioconvert/: Implement a channel mixer.
Original commit message from CVS:
* gst/audioconvert/Makefile.am:
* gst/audioconvert/gstaudioconvert.c: (gst_audio_convert_init),
(gst_audio_convert_link), (gst_audio_convert_change_state),
(gst_audio_convert_channels):
* gst/audioconvert/gstchannelmix.c:
(gst_audio_convert_unset_matrix),
(gst_audio_convert_fill_identical),
(gst_audio_convert_fill_compatible),
(gst_audio_convert_detect_pos), (gst_audio_convert_fill_one_other),
(gst_audio_convert_fill_others),
(gst_audio_convert_fill_normalize),
(gst_audio_convert_fill_matrix), (gst_audio_convert_setup_matrix),
(gst_audio_convert_passthrough), (gst_audio_convert_mix):
* gst/audioconvert/gstchannelmix.h:
Implement a channel mixer.
2004-11-28 16:09:13 +00:00
|
|
|
|
|
|
|
noinst_HEADERS = \
|
|
|
|
gstchannelmix.h \
|
|
|
|
plugin.h
|
2005-02-13 17:39:22 +00:00
|
|
|
|
2005-04-25 00:23:06 +00:00
|
|
|
#TESTS = channelmixtest
|
|
|
|
#noinst_PROGRAMS = channelmixtest
|
2005-02-13 17:39:22 +00:00
|
|
|
|
2005-04-25 13:29:40 +00:00
|
|
|
#channelmixtest_CFLAGS = $(GST_CFLAGS)
|
|
|
|
#channelmixtest_LDADD = libgstaudioconvert.la \
|
|
|
|
# $(top_builddir)/gst-libs/gst/audio/libgstaudio-@GST_MAJORMINOR@.la
|
|
|
|
#channelmixtest_LDFLAGS = $(GST_LIBS)
|