mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer.git
synced 2024-11-03 16:09:39 +00:00
788fed202d
No need to unref buffers if pad_push returns something non-FLOW_OK. In fact, this will cause assertions or crashes. However, we do need to unref the input buffer whenever we don't pass it downstream. Also, a non-OK flow return is not an error, so don't post error messages on the bus - the pipeline may just be shutting down. Miscellaneous other clean-ups and crack removal. Plenty of work left for those who feel like it.
12 lines
341 B
Makefile
12 lines
341 B
Makefile
|
|
plugin_LTLIBRARIES = libgstbz2.la
|
|
|
|
libgstbz2_la_SOURCES = \
|
|
gstbz2.c gstbz2dec.c gstbz2enc.c
|
|
libgstbz2_la_CFLAGS = $(GST_BASE_CFLAGS) $(GST_CFLAGS)
|
|
libgstbz2_la_LIBADD = $(GST_BASE_LIBS) $(BZ2_LIBS)
|
|
libgstbz2_la_LDFLAGS = $(GST_PLUGIN_LDFLAGS)
|
|
libgstbz2_la_LIBTOOLFLAGS = --tag=disable-static
|
|
|
|
noinst_HEADERS = \
|
|
gstbz2dec.h gstbz2enc.h
|