mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer.git
synced 2024-11-09 19:09:41 +00:00
4fdf8d5b16
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.
15 lines
333 B
Makefile
15 lines
333 B
Makefile
plugin_LTLIBRARIES = libgstaudioconvert.la
|
|
|
|
libgstaudioconvert_la_SOURCES = \
|
|
gstaudioconvert.c \
|
|
gstchannelmix.c \
|
|
bufferframesconvert.c \
|
|
plugin.c
|
|
|
|
libgstaudioconvert_la_CFLAGS = $(GST_CFLAGS)
|
|
libgstaudioconvert_la_LIBADD =
|
|
libgstaudioconvert_la_LDFLAGS = $(GST_PLUGIN_LDFLAGS)
|
|
|
|
noinst_HEADERS = \
|
|
gstchannelmix.h \
|
|
plugin.h
|