mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer.git
synced 2025-06-05 06:58:56 +00:00
gst/asfdemux/gstasf.c: Call gst_riff_init() so the riff debug category gets set up before it is being used.
Original commit message from CVS: * gst/asfdemux/gstasf.c: (plugin_init): Call gst_riff_init() so the riff debug category gets set up before it is being used.
This commit is contained in:
parent
90d4598207
commit
ddab78c1ab
2 changed files with 16 additions and 4 deletions
|
@ -1,3 +1,9 @@
|
||||||
|
2006-05-22 Tim-Philipp Müller <tim at centricular dot net>
|
||||||
|
|
||||||
|
* gst/asfdemux/gstasf.c: (plugin_init):
|
||||||
|
Call gst_riff_init() so the riff debug category gets set up
|
||||||
|
before it is being used.
|
||||||
|
|
||||||
2006-05-19 Michael Smith <msmith@fluendo.com>
|
2006-05-19 Michael Smith <msmith@fluendo.com>
|
||||||
|
|
||||||
* gst/iec958/ac3_padder.c: (ac3p_parse):
|
* gst/iec958/ac3_padder.c: (ac3p_parse):
|
||||||
|
|
|
@ -22,6 +22,7 @@
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
#include <gst/gst.h>
|
#include <gst/gst.h>
|
||||||
|
#include <gst/riff/riff-media.h>
|
||||||
|
|
||||||
#include "gstasfdemux.h"
|
#include "gstasfdemux.h"
|
||||||
/* #include "gstasfmux.h" */
|
/* #include "gstasfmux.h" */
|
||||||
|
@ -29,11 +30,16 @@
|
||||||
static gboolean
|
static gboolean
|
||||||
plugin_init (GstPlugin * plugin)
|
plugin_init (GstPlugin * plugin)
|
||||||
{
|
{
|
||||||
if (!gst_element_register (plugin, "asfdemux", GST_RANK_SECONDARY, GST_TYPE_ASF_DEMUX)) /*
|
gst_riff_init ();
|
||||||
|| !gst_element_register (plugin, "asfmux", GST_RANK_NONE,
|
|
||||||
GST_TYPE_ASFMUX))
|
if (!gst_element_register (plugin, "asfdemux", GST_RANK_SECONDARY,
|
||||||
*/
|
GST_TYPE_ASF_DEMUX)) {
|
||||||
return FALSE;
|
return FALSE;
|
||||||
|
}
|
||||||
|
/*
|
||||||
|
if (!gst_element_register (plugin, "asfmux", GST_RANK_NONE, GST_TYPE_ASFMUX))
|
||||||
|
return FALSE;
|
||||||
|
*/
|
||||||
|
|
||||||
return TRUE;
|
return TRUE;
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in a new issue