mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer.git
synced 2025-01-24 16:18:16 +00:00
adding error to gstbin.c
Original commit message from CVS: adding error to gstbin.c
This commit is contained in:
parent
8e30d59c6c
commit
a8328dde93
3 changed files with 14 additions and 6 deletions
|
@ -1,3 +1,8 @@
|
||||||
|
2004-02-24 Thomas Vander Stichele <thomas at apestaart dot org>
|
||||||
|
|
||||||
|
* gst/gstbin.c: (gst_bin_add):
|
||||||
|
add error for not being able to add elements
|
||||||
|
|
||||||
2004-02-22 Julien MOUTTE <julien@moutte.net>
|
2004-02-22 Julien MOUTTE <julien@moutte.net>
|
||||||
|
|
||||||
* gst/gsttag.c: (_gst_tag_initialize): Registering 2 new tags,
|
* gst/gsttag.c: (_gst_tag_initialize): Registering 2 new tags,
|
||||||
|
@ -347,7 +352,6 @@
|
||||||
require gettext 0.11.5 so ulonglong.m4 gets checked out and copied
|
require gettext 0.11.5 so ulonglong.m4 gets checked out and copied
|
||||||
by autopoint (fixes #132996)
|
by autopoint (fixes #132996)
|
||||||
|
|
||||||
>>>>>>> 1.260
|
|
||||||
2004-02-10 Andy Wingo <wingo@pobox.com>
|
2004-02-10 Andy Wingo <wingo@pobox.com>
|
||||||
|
|
||||||
* gst/gstpad.c (gst_pad_custom_new): Add a FIXME, this is a hacky
|
* gst/gstpad.c (gst_pad_custom_new): Add a FIXME, this is a hacky
|
||||||
|
@ -911,7 +915,6 @@
|
||||||
* gst/gstvalue.h:
|
* gst/gstvalue.h:
|
||||||
sync .h with .c declarations
|
sync .h with .c declarations
|
||||||
|
|
||||||
>>>>>>> 1.182
|
|
||||||
2004-01-30 Julien Moutte <julien@moutte.net>
|
2004-01-30 Julien Moutte <julien@moutte.net>
|
||||||
|
|
||||||
* libs/gst/bytestream/bytestream.c: Reverting my event handling patch.
|
* libs/gst/bytestream/bytestream.c: Reverting my event handling patch.
|
||||||
|
@ -1286,7 +1289,6 @@
|
||||||
|
|
||||||
Time to get into the advanced topics. ;).
|
Time to get into the advanced topics. ;).
|
||||||
|
|
||||||
>>>>>>> 1.174
|
|
||||||
2004-01-27 Ronald Bultje <rbultje@ronald.bitfreak.net>
|
2004-01-27 Ronald Bultje <rbultje@ronald.bitfreak.net>
|
||||||
|
|
||||||
* docs/pwg/advanced_types.xml:
|
* docs/pwg/advanced_types.xml:
|
||||||
|
@ -1377,7 +1379,6 @@
|
||||||
* gst/gsttag.h:
|
* gst/gsttag.h:
|
||||||
add GstTagFlag
|
add GstTagFlag
|
||||||
|
|
||||||
>>>>>>> 1.143
|
|
||||||
2004-01-20 Thomas Vander Stichele <thomas at apestaart dot org>
|
2004-01-20 Thomas Vander Stichele <thomas at apestaart dot org>
|
||||||
|
|
||||||
* docs/gst/gstreamer-sections.txt:
|
* docs/gst/gstreamer-sections.txt:
|
||||||
|
|
|
@ -110,6 +110,10 @@ All GstElements can be serialized to an XML presentation and subsequently loaded
|
||||||
|
|
||||||
</para>
|
</para>
|
||||||
|
|
||||||
|
@:
|
||||||
|
@:
|
||||||
|
@:
|
||||||
|
|
||||||
@gstxml: the object which received the signal.
|
@gstxml: the object which received the signal.
|
||||||
@arg1:
|
@arg1:
|
||||||
@arg2:
|
@arg2:
|
||||||
|
|
|
@ -28,6 +28,7 @@
|
||||||
#include "gstmarshal.h"
|
#include "gstmarshal.h"
|
||||||
#include "gstxml.h"
|
#include "gstxml.h"
|
||||||
#include "gstinfo.h"
|
#include "gstinfo.h"
|
||||||
|
#include "gsterror.h"
|
||||||
|
|
||||||
#include "gstscheduler.h"
|
#include "gstscheduler.h"
|
||||||
#include "gstindex.h"
|
#include "gstindex.h"
|
||||||
|
@ -495,7 +496,9 @@ gst_bin_add (GstBin *bin, GstElement *element)
|
||||||
bclass->add_element (bin, element);
|
bclass->add_element (bin, element);
|
||||||
}
|
}
|
||||||
else {
|
else {
|
||||||
g_warning ("cannot add elements to bin %s\n", GST_ELEMENT_NAME (bin));
|
GST_ELEMENT_ERROR (bin, CORE, FAILED, (NULL),
|
||||||
|
("cannot add element %s to bin %s",
|
||||||
|
GST_ELEMENT_NAME (element), GST_ELEMENT_NAME (bin)));
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue