mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer.git
synced 2024-12-25 17:50:36 +00:00
gst/playback/gstdecodebin2.c: Remove bogus assert, the decodepad could have been created inside an already existing g...
Original commit message from CVS: * gst/playback/gstdecodebin2.c: (gst_decode_pad_activate): Remove bogus assert, the decodepad could have been created inside an already existing group.
This commit is contained in:
parent
a3887a915a
commit
fbeec41546
2 changed files with 6 additions and 1 deletions
|
@ -1,3 +1,9 @@
|
||||||
|
2008-10-08 Wim Taymans <wim.taymans@collabora.co.uk>
|
||||||
|
|
||||||
|
* gst/playback/gstdecodebin2.c: (gst_decode_pad_activate):
|
||||||
|
Remove bogus assert, the decodepad could have been created inside an
|
||||||
|
already existing group.
|
||||||
|
|
||||||
2008-10-08 Andy Wingo <wingo@pobox.com>
|
2008-10-08 Andy Wingo <wingo@pobox.com>
|
||||||
|
|
||||||
* gst/playback/gstdecodebin2.c (expose_pad): Fix typo: unset
|
* gst/playback/gstdecodebin2.c (expose_pad): Fix typo: unset
|
||||||
|
|
|
@ -2307,7 +2307,6 @@ gst_decode_pad_add_drained_check (GstDecodePad * dpad)
|
||||||
static void
|
static void
|
||||||
gst_decode_pad_activate (GstDecodePad * dpad, GstDecodeGroup * group)
|
gst_decode_pad_activate (GstDecodePad * dpad, GstDecodeGroup * group)
|
||||||
{
|
{
|
||||||
g_return_if_fail (dpad->group == NULL);
|
|
||||||
g_return_if_fail (group != NULL);
|
g_return_if_fail (group != NULL);
|
||||||
|
|
||||||
dpad->group = group;
|
dpad->group = group;
|
||||||
|
|
Loading…
Reference in a new issue