mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer.git
synced 2024-11-08 18:39:54 +00:00
24b55b969a
Original commit message from CVS: 2006-04-03 Andy Wingo <wingo@pobox.com> * ext/theora/theora.c (plugin_init): Register theoraparse. * ext/theora/gsttheoraparse.h: * ext/theora/theoraparse.c: New files implementing a theora parser. Now we can properly remux ogg/theora+vorbis, yay.
11 lines
404 B
Makefile
11 lines
404 B
Makefile
plugin_LTLIBRARIES = libgsttheora.la
|
|
|
|
noinst_HEADERS = gsttheoraenc.h gsttheoradec.h gsttheoraparse.h
|
|
|
|
libgsttheora_la_SOURCES = theora.c theoraenc.c theoradec.c theoraparse.c
|
|
libgsttheora_la_CFLAGS = $(GST_CFLAGS) $(THEORA_CFLAGS)
|
|
libgsttheora_la_LDFLAGS = $(GST_PLUGIN_LDFLAGS)
|
|
libgsttheora_la_LIBADD = \
|
|
$(top_builddir)/gst-libs/gst/tag/libgsttag-@GST_MAJORMINOR@.la \
|
|
$(GST_LIBS) \
|
|
$(THEORA_LIBS)
|