mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer.git
synced 2024-11-10 11:29:55 +00:00
79d4b18044
These are based on the OpenCore codecs. Fixes bug #584890.
20 lines
474 B
Makefile
20 lines
474 B
Makefile
plugin_LTLIBRARIES = libgstamrnb.la
|
|
|
|
libgstamrnb_la_SOURCES = \
|
|
amrnb.c \
|
|
amrnbdec.c \
|
|
amrnbenc.c
|
|
|
|
libgstamrnb_la_CFLAGS = $(GST_CFLAGS) $(AMRNB_CFLAGS)
|
|
libgstamrnb_la_LIBADD = $(GST_BASE_LIBS) $(AMRNB_LIBS)
|
|
libgstamrnb_la_LDFLAGS = $(GST_PLUGIN_LDFLAGS)
|
|
libgstamrnb_la_LIBTOOLFLAGS = --tag=disable-static
|
|
|
|
noinst_HEADERS = \
|
|
amrnbdec.h \
|
|
amrnbenc.h
|
|
|
|
presetdir = $(datadir)/gstreamer-$(GST_MAJORMINOR)/presets
|
|
preset_DATA = GstAmrnbEnc.prs
|
|
|
|
EXTRA_DIST = $(preset_DATA)
|