mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer.git
synced 2024-11-24 02:31:03 +00:00
e0006ee0b9
Original commit message from CVS: a52dec: Use a debug category, Output timestamps correctly Emit tag info, Handle events, tell liba52dec about cpu capabilities so it can use MMX etc. dvdec: Fix a crasher accessing invalid memory dvdnavsrc:Some support for byte-format seeking. Small fixes for still frames and menu button overlays mpeg2dec: Use a debug category. Adjust the report level of several items to LOG. Call mpeg2_custom_fbuf to mark our buffers as 'custom buffers' so it doesn't lose the GstBuffer pointer navseek: Add the navseek debug element for seeking back and forth in a video stream using arrow keys. mpeg2subt:Pretty much a complete rewrite. Now a loopbased element. May still require work to properly synchronise subtitle buffers. mpegdemux: dvddemux: Don't attempt to create subbuffers of size 0 Reduce a couple of error outputs to warnings. y4mencode:Output the y4m frame header correctly
20 lines
623 B
Makefile
20 lines
623 B
Makefile
|
|
plugin_LTLIBRARIES = libgstefence.la libgstnavigationtest.la libgstdebug.la
|
|
|
|
noinst_HEADERS = efence.h gstnavigationtest.h gstnavseek.h
|
|
|
|
libgstefence_la_SOURCES = efence.c
|
|
libgstefence_la_CFLAGS = $(GST_CFLAGS)
|
|
libgstefence_la_LDFLAGS = $(GST_PLUGIN_LDFLAGS)
|
|
|
|
libgstnavigationtest_la_SOURCES = gstnavigationtest.c
|
|
libgstnavigationtest_la_CFLAGS = $(GST_CFLAGS) -I$(top_srcdir)/gst/videofilter
|
|
libgstnavigationtest_la_LDFLAGS = $(GST_PLUGIN_LDFLAGS)
|
|
|
|
libgstdebug_la_SOURCES = gstdebug.c \
|
|
breakmydata.c \
|
|
negotiation.c \
|
|
gstnavseek.c
|
|
|
|
libgstdebug_la_CFLAGS = $(GST_CFLAGS)
|
|
libgstdebug_la_LDFLAGS = $(GST_PLUGIN_LDFLAGS)
|