mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer.git
synced 2024-11-08 18:39:54 +00:00
5956f87dd8
Original commit message from CVS: Patch by: Lutz Müller <lutz at topfrose de> * ext/bz2/Makefile.am: * ext/bz2/gstbz2dec.c: (gst_bz2dec_chain), (gst_bz2dec_init), (gst_bz2dec_change_state), (gst_bz2dec_class_init): Use gst_type_find_helper_* functions for typefinding; use correct caps with gst_pad_alloc_buffer(); add state change function and reset decoder in it; don't unref buffer if pad_push fails; use fixed caps on source pad. (#341524).
11 lines
278 B
Makefile
11 lines
278 B
Makefile
|
|
plugin_LTLIBRARIES = libgstbz2.la
|
|
|
|
libgstbz2_la_SOURCES = \
|
|
gstbz2.c gstbz2dec.c gstbz2enc.c
|
|
libgstbz2_la_CFLAGS = $(GST_BASE_CFLAGS)
|
|
libgstbz2_la_LIBADD = $(GST_BASE_LIBS) $(BZ2_LIBS)
|
|
libgstbz2_la_LDFLAGS = $(GST_PLUGIN_LDFLAGS)
|
|
|
|
noinst_HEADERS = \
|
|
gstbz2dec.h gstbz2enc.h
|