mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer.git
synced 2025-01-03 05:59:10 +00:00
23540ccc52
Original commit message from CVS: Faster and modular getbits implementation. Fixed a bug in the audiosink that could lock up your box on bad MB. Modified the plugins to use the new getbits functions.
20 lines
610 B
Makefile
20 lines
610 B
Makefile
filterdir = $(libdir)/gst
|
|
|
|
filter_LTLIBRARIES = libgstgetbits.la
|
|
|
|
libgstgetbits_la_SOURCES = gstgetbits.c gstgetbits_inl.h gstgetbits_i386.s
|
|
|
|
libgstgetbitsincludedir = $(includedir)/gst/libs/gstgetbits
|
|
libgstgetbitsinclude_HEADERS = gstgetbits.h
|
|
|
|
noinst_HEADERS = gstgetbits.h gstgetbits_inl.h
|
|
|
|
bin_PROGRAMS = gbtest
|
|
|
|
gbtest_SOURCES = gbtest.c
|
|
gbtest_LDADD = libgstgetbits.la
|
|
|
|
CFLAGS += -Wall -O2 -fomit-frame-pointer -funroll-all-loops -finline-functions -ffast-math
|
|
|
|
INCLUDES = $(GLIB_CFLAGS) $(GTK_CFLAGS) -I$(top_srcdir) -I$(top_srcdir)/include
|
|
LDADD = $(GLIB_LIBS) $(GTK_LIBS) $(top_srcdir)/gst/libgst.la
|