diff options
author | Jan Schmidt <thaytan@mad.scientist.com> | 2004-04-01 11:48:27 +0000 |
---|---|---|
committer | Jan Schmidt <thaytan@mad.scientist.com> | 2004-04-01 11:48:27 +0000 |
commit | e0006ee0b9556be2f69e0ac6ac4ef102937f0966 (patch) | |
tree | b30b8bd7451ff35483eb7a7e81fa523e34e52d81 /gst/debug/gstdebug.c | |
parent | c683b2301c41e968ddd52b1b2cd57b5ac25ad580 (diff) |
a52dec: Use a debug category, Output timestamps correctly
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
Diffstat (limited to 'gst/debug/gstdebug.c')
-rw-r--r-- | gst/debug/gstdebug.c | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/gst/debug/gstdebug.c b/gst/debug/gstdebug.c index 32db4c56..9ec4aff3 100644 --- a/gst/debug/gstdebug.c +++ b/gst/debug/gstdebug.c @@ -26,12 +26,14 @@ gboolean gst_break_my_data_plugin_init (GstPlugin * plugin); gboolean gst_negotiation_plugin_init (GstPlugin * plugin); +gboolean gst_navseek_plugin_init (GstPlugin * plugin); static gboolean plugin_init (GstPlugin * plugin) { gst_break_my_data_plugin_init (plugin); gst_negotiation_plugin_init (plugin); + gst_navseek_plugin_init (plugin); return TRUE; } |