mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer.git
synced 2024-11-24 18:51:11 +00:00
868291efc4
Original commit message from CVS: * configure.ac: * ext/Makefile.am: * ext/musepack/Makefile.am: * ext/musepack/gstmusepackdec.cpp: * ext/musepack/gstmusepackdec.h: * ext/musepack/gstmusepackreader.cpp: * ext/musepack/gstmusepackreader.h: Add musepack decoder. * ext/faad/gstfaad.c: (gst_faad_base_init): Make pad templates static. * gst/typefind/gsttypefindfunctions.c: (mp3_type_find), (plugin_init): Add musepack typefinder, make mp3 typefinding work halfway stream, which doesn't actually work yet because id3demux doesn't implement _get_length().
12 lines
333 B
Makefile
12 lines
333 B
Makefile
plugin_LTLIBRARIES = libgstmusepack.la
|
|
|
|
libgstmusepack_la_SOURCES = \
|
|
gstmusepackdec.cpp \
|
|
gstmusepackreader.cpp
|
|
libgstmusepack_la_CXXFLAGS = $(MUSEPACK_CFLAGS) $(GST_CFLAGS)
|
|
libgstmusepack_la_LIBADD = $(MUSEPACK_LIBS)
|
|
libgstmusepack_la_LDFLAGS = $(GST_PLUGIN_LDFLAGS)
|
|
|
|
noinst_HEADERS = \
|
|
gstmusepackdec.h \
|
|
gstmusepackreader.h
|