mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer.git
synced 2024-11-10 03:19:40 +00:00
4ebda6356b
Original commit message from CVS: * sys/oss/Makefile.am: * sys/oss/common.h: * sys/oss/gstosssink.c: (gst_oss_sink_init), (gst_oss_sink_open), (gst_oss_sink_prepare), (gst_oss_sink_unprepare): * sys/oss/gstosssrc.c: (gst_oss_src_prepare), (gst_oss_src_unprepare): - the user-visible error strings were in the wrong category - and the messages were not marked for translation - which is actually a good thing, because they were exactly the kind of message you would never want anyone to see - the macros were using variables that didn't exist in the macro arguments - and they were obviously copied from each other and then modified - so a common header makes sense
35 lines
893 B
Makefile
35 lines
893 B
Makefile
plugin_LTLIBRARIES = libgstossaudio.la
|
|
|
|
libgstossaudio_la_SOURCES = gstossaudio.c \
|
|
gstosshelper.c \
|
|
gstossmixer.c \
|
|
gstossmixerelement.c \
|
|
gstossmixertrack.c \
|
|
gstosssink.c \
|
|
gstosssrc.c
|
|
|
|
# gstossdmabuffer.c
|
|
|
|
libgstossaudio_la_CFLAGS = $(GST_PLUGINS_BASE_CFLAGS) $(GST_CFLAGS)
|
|
libgstossaudio_la_LIBADD = \
|
|
-lgstinterfaces-@GST_MAJORMINOR@ \
|
|
-lgstaudio-@GST_MAJORMINOR@ \
|
|
$(GST_PLUGINS_BASE_LIBS) \
|
|
$(GST_LIBS)
|
|
libgstossaudio_la_LDFLAGS = $(GST_PLUGIN_LDFLAGS)
|
|
|
|
noinst_HEADERS = common.h \
|
|
gstosssink.h \
|
|
gstosssrc.h \
|
|
gstosshelper.h \
|
|
gstossdmabuffer.h \
|
|
gstossmixer.h \
|
|
gstossmixerelement.h \
|
|
gstossmixertrack.h
|
|
|
|
# noinst_PROGRAMS = #oss_probe
|
|
|
|
# oss_probe_SOURCES = oss_probe.c
|
|
# oss_probe_CFLAGS = $(GST_CFLAGS)
|
|
# oss_probe_LDADD = $(GLIB_LIBS)
|
|
|