mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer.git
synced 2024-11-10 03:19:40 +00:00
4d0df9433c
Original commit message from CVS: * configure.ac: * sys/Makefile.am: * sys/osxaudio/Makefile.am: * sys/osxaudio/gstosxaudio.c: * sys/osxaudio/gstosxaudiosink.c: (gst_osx_audio_sink_osxelement_do_init), (gst_osx_audio_sink_init), (gst_osx_audio_sink_getcaps), (gst_osx_audio_sink_create_ringbuffer), (plugin_init): * sys/osxaudio/gstosxaudiosrc.c: (gst_osx_audio_src_osxelement_do_init), (gst_osx_audio_src_init), (gst_osx_audio_src_create_ringbuffer): * sys/osxaudio/gstosxringbuffer.c: (gst_osx_ring_buffer_get_type), (gst_osx_ring_buffer_class_init), (gst_osx_ring_buffer_init), (gst_osx_ring_buffer_acquire), (gst_osx_ring_buffer_start), (gst_osx_ring_buffer_pause), (gst_osx_ring_buffer_stop): * sys/osxaudio/gstosxringbuffer.h: Activate osxaudio in gst-plugins-good with proper build setup. Add inlined documentation. Fix debug statements Fix ringbuffer when pausing. Fixes #323471
22 lines
575 B
Makefile
22 lines
575 B
Makefile
plugin_LTLIBRARIES = libgstosxaudio.la
|
|
|
|
libgstosxaudio_la_SOURCES = gstosxringbuffer.c \
|
|
gstosxaudioelement.c \
|
|
gstosxaudiosink.c \
|
|
gstosxaudiosrc.c
|
|
|
|
libgstosxaudio_la_CFLAGS = $(GST_PLUGINS_BASE_CFLAGS) $(GST_CFLAGS)
|
|
libgstosxaudio_la_LIBADD = \
|
|
-lgstinterfaces-@GST_MAJORMINOR@ \
|
|
-lgstaudio-@GST_MAJORMINOR@ \
|
|
$(GST_PLUGINS_BASE_LIBS) \
|
|
$(GST_LIBS)
|
|
libgstosxaudio_la_LDFLAGS = $(GST_PLUGIN_LDFLAGS) -Wl,-framework -Wl,CoreAudio
|
|
|
|
noinst_HEADERS = gstosxaudiosink.h \
|
|
gstosxaudioelement.h \
|
|
gstosxringbuffer.h \
|
|
gstosxaudiosrc.h
|
|
|
|
|
|
|