mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer.git
synced 2024-11-08 18:39:54 +00:00
ca068865c3
Change the way the output framerate is calculated to ignore the first sample (which is sometimes truncated in my testing) and use the new gst_video_guess_framerate() function to recognise common standard framerates better. Remove the code that was sorting the first 20 sample durations and then ignoring the result.
54 lines
1.6 KiB
Makefile
54 lines
1.6 KiB
Makefile
|
|
plugin_LTLIBRARIES = libgstisomp4.la
|
|
|
|
libgstisomp4_la_CFLAGS = $(GST_PLUGINS_BASE_CFLAGS) $(GST_BASE_CFLAGS) $(GST_CFLAGS)
|
|
libgstisomp4_la_LIBADD = \
|
|
$(GST_PLUGINS_BASE_LIBS) \
|
|
-lgstriff-@GST_API_VERSION@ \
|
|
-lgstaudio-@GST_API_VERSION@ \
|
|
-lgstvideo-@GST_API_VERSION@ \
|
|
-lgstrtp-@GST_API_VERSION@ \
|
|
-lgsttag-@GST_API_VERSION@ \
|
|
-lgstpbutils-@GST_API_VERSION@ \
|
|
$(GST_BASE_LIBS) $(GST_LIBS) $(ZLIB_LIBS)
|
|
libgstisomp4_la_LDFLAGS = ${GST_PLUGIN_LDFLAGS}
|
|
libgstisomp4_la_SOURCES = isomp4-plugin.c gstrtpxqtdepay.c \
|
|
qtdemux.c qtdemux_types.c qtdemux_dump.c qtdemux_lang.c \
|
|
gstqtmux.c gstqtmoovrecover.c atoms.c atomsrecovery.c descriptors.c \
|
|
properties.c gstqtmuxmap.c
|
|
libgstisomp4_la_LIBTOOLFLAGS = $(GST_PLUGIN_LIBTOOLFLAGS)
|
|
|
|
noinst_HEADERS = \
|
|
qtatomparser.h \
|
|
qtdemux.h \
|
|
qtdemux_types.h \
|
|
qtdemux_dump.h \
|
|
qtdemux_lang.h \
|
|
qtpalette.h \
|
|
gstrtpxqtdepay.h \
|
|
gstqtmux.h \
|
|
gstqtmoovrecover.h \
|
|
atoms.h \
|
|
atomsrecovery.h \
|
|
descriptors.h \
|
|
properties.h \
|
|
fourcc.h \
|
|
gstqtmuxmap.h
|
|
|
|
EXTRA_DIST = \
|
|
gstqtmux-doc.c \
|
|
gstqtmux-doc.h
|
|
|
|
Android.mk: Makefile.am $(BUILT_SOURCES)
|
|
androgenizer \
|
|
-:PROJECT libgstisomp4 -:SHARED libgstisomp4 \
|
|
-:TAGS eng debug \
|
|
-:REL_TOP $(top_srcdir) -:ABS_TOP $(abs_top_srcdir) \
|
|
-:SOURCES $(libgstisomp4_la_SOURCES) \
|
|
-:CFLAGS $(DEFS) $(DEFAULT_INCLUDES) $(CPPFLAGS) $(libgstisomp4_la_CFLAGS) \
|
|
-:LDFLAGS $(libgstisomp4_la_LDFLAGS) \
|
|
$(libgstisomp4_la_LIBADD) \
|
|
-ldl \
|
|
-:PASSTHROUGH LOCAL_ARM_MODE:=arm \
|
|
LOCAL_MODULE_PATH:='$$(TARGET_OUT)/lib/gstreamer-0.10' \
|
|
> $@
|