mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer.git
synced 2024-11-03 16:09:39 +00:00
3060b5e9f8
Original commit message from CVS: * ext/theora/Makefile.am: * ext/theora/theora.c: (plugin_init): * ext/theora/theoradec.c: (theora_dec_change_state): * ext/theora/theoraenc.c: (gst_theora_enc_base_init), (gst_theora_enc_class_init), (gst_theora_enc_init), (theora_enc_sink_link), (theora_enc_event), (theora_push_packet), (theora_enc_chain), (theora_enc_change_state), (theora_enc_set_property), (theora_enc_get_property): Added a theora encoder, grouped the encoder and decoder into the same plugin.
9 lines
312 B
Makefile
9 lines
312 B
Makefile
plugindir = $(libdir)/gstreamer-@GST_MAJORMINOR@
|
|
|
|
plugin_LTLIBRARIES = libgsttheora.la
|
|
|
|
libgsttheora_la_SOURCES = theora.c theoradec.c theoraenc.c
|
|
libgsttheora_la_CFLAGS = $(GST_CFLAGS) $(THEORA_CFLAGS)
|
|
libgsttheora_la_LIBADD = $(THEORA_LIBS) #-ltheora -lvorbis
|
|
libgsttheora_la_LDFLAGS = $(GST_PLUGIN_LDFLAGS)
|
|
|