mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer.git
synced 2024-11-03 16:09:39 +00:00
91d4abceaa
Some muxers (eg, qtmux) only support raw AAC, so this allows linking an encoder that outputs ADTS only to those muxers. The conversion is simple (omit the first 7 or 9 bytes of the frame), but has to be done in pre_push instead of handle_frame as 1.0 does not seem to allow skipping bytes there as 0.10 used to. Other conversions are not supported (yet).
20 lines
764 B
Makefile
20 lines
764 B
Makefile
plugin_LTLIBRARIES = libgstaudioparsers.la
|
|
|
|
libgstaudioparsers_la_SOURCES = \
|
|
gstaacparse.c gstamrparse.c gstac3parse.c \
|
|
gstdcaparse.c gstflacparse.c gstmpegaudioparse.c \
|
|
gstsbcparse.c gstwavpackparse.c plugin.c
|
|
|
|
libgstaudioparsers_la_CFLAGS = \
|
|
$(GST_PLUGINS_BASE_CFLAGS) $(GST_BASE_CFLAGS) $(GST_CFLAGS)
|
|
libgstaudioparsers_la_LIBADD = \
|
|
-lgstpbutils-$(GST_API_VERSION) \
|
|
$(GST_PLUGINS_BASE_LIBS) -lgsttag-$(GST_API_VERSION) \
|
|
-lgstaudio-$(GST_API_VERSION) \
|
|
$(GST_BASE_LIBS) $(GST_LIBS)
|
|
libgstaudioparsers_la_LDFLAGS = $(GST_PLUGIN_LDFLAGS)
|
|
libgstaudioparsers_la_LIBTOOLFLAGS = $(GST_PLUGIN_LIBTOOLFLAGS)
|
|
|
|
noinst_HEADERS = gstaacparse.h gstamrparse.h gstac3parse.h \
|
|
gstdcaparse.h gstflacparse.h gstmpegaudioparse.h gstsbcparse.h \
|
|
gstwavpackparse.h
|