mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer.git
synced 2024-11-10 03:19:40 +00:00
9d3a69fc58
Original commit message from CVS: * ext/alsa/Makefile.am: * ext/alsa/gstalsa.c: (gst_alsa_detect_rates), (gst_alsa_detect_formats), (get_channel_free_structure), (caps_add_channel_configuration), (gst_alsa_detect_channels), (gst_alsa_probe_supported_formats): * ext/alsa/gstalsa.h: * ext/alsa/gstalsasink.c: (gst_alsasink_getcaps): Refactor and improve caps probing code: probe signedness when we probe the supported formats/widths; set endianness to the one we actually probed for (ie. cpu endianness). * ext/alsa/gstalsasrc.c: (gst_alsasrc_init), (gst_alsasrc_getcaps), (gst_alsasrc_close): * ext/alsa/gstalsasrc.h: Implement caps probing for alsasrc.
29 lines
711 B
Makefile
29 lines
711 B
Makefile
plugin_LTLIBRARIES = libgstalsa.la
|
|
|
|
libgstalsa_la_SOURCES = \
|
|
gstalsadeviceprobe.c \
|
|
gstalsamixer.c \
|
|
gstalsamixerelement.c \
|
|
gstalsamixertrack.c \
|
|
gstalsamixeroptions.c \
|
|
gstalsaplugin.c \
|
|
gstalsasink.c \
|
|
gstalsasrc.c \
|
|
gstalsa.c
|
|
|
|
libgstalsa_la_CFLAGS = $(GST_CFLAGS) $(ALSA_CFLAGS)
|
|
libgstalsa_la_LDFLAGS = $(GST_PLUGIN_LDFLAGS)
|
|
libgstalsa_la_LIBADD = \
|
|
$(ALSA_LIBS) \
|
|
$(top_builddir)/gst-libs/gst/interfaces/libgstinterfaces-@GST_MAJORMINOR@.la \
|
|
$(top_builddir)/gst-libs/gst/audio/libgstaudio-@GST_MAJORMINOR@.la
|
|
|
|
noinst_HEADERS = \
|
|
gstalsa.h \
|
|
gstalsadeviceprobe.h \
|
|
gstalsamixer.h \
|
|
gstalsamixerelement.h \
|
|
gstalsamixertrack.h \
|
|
gstalsamixeroptions.h \
|
|
gstalsasrc.h \
|
|
gstalsasink.h
|