dlbeswick

Results 23 comments of dlbeswick

Here's a little program that reproduces the issue: ```c #include #include GstPadTemplate * bt_gst_element_factory_get_pad_template (GstElementFactory * factory, const gchar * name) { /* get pad templates */ const GList *list...

Makefile: ```make PKGS = gstreamer-base-1.0 gstreamer-audio-1.0 gstreamer-plugins-base-1.0 gstreamer-controller-1.0 CFLAGS != pkg-config --cflags $(PKGS) CFLAGS += -Wall -Wno-unused-variable LDLIBS != pkg-config --libs $(PKGS) main: main.o clean: rm main *.o || true...