summary | shortlog | log | commit | commitdiff | tree
raw | patch | inline | side by side (parent: b3c04da)
raw | patch | inline | side by side (parent: b3c04da)
author | Mark Nauwelaerts <mark.nauwelaerts@collabora.co.uk> | |
Mon, 21 Feb 2011 12:13:11 +0000 (13:13 +0100) | ||
committer | Mark Nauwelaerts <mark.nauwelaerts@collabora.co.uk> | |
Mon, 21 Feb 2011 12:16:05 +0000 (13:16 +0100) |
... as _NOT_LINKED was neither tested as fatal before nor complained about.
ext/mpeg2dec/gstmpeg2dec.c | patch | blob | history |
index 6766d92537882d5c8cfdcf8d89bb0253bbad9788..5867462e55dc06cc5f9ba5a5c646e5747f605ee0 100644 (file)
/* ERRORS */
no_buffer:
{
- if (ret != GST_FLOW_WRONG_STATE && ret != GST_FLOW_UNEXPECTED) {
+ if (ret != GST_FLOW_WRONG_STATE && ret != GST_FLOW_UNEXPECTED &&
+ ret != GST_FLOW_NOT_LINKED) {
GST_ELEMENT_ERROR (mpeg2dec, RESOURCE, FAILED, (NULL),
("Failed to allocate memory for buffer, reason %s",
gst_flow_get_name (ret)));