From 663abda77898f0ee0767e8e4dfb7e407cb651742 Mon Sep 17 00:00:00 2001 From: Sreerenj Balachandran Date: Mon, 21 May 2012 13:34:02 +0300 Subject: [PATCH] theoradec: remove usless checking of return val. fixes https://bugzilla.gnome.org/show_bug.cgi?id=676525 --- ext/theora/gsttheoradec.c | 2 -- 1 file changed, 2 deletions(-) diff --git a/ext/theora/gsttheoradec.c b/ext/theora/gsttheoradec.c index e63cfa6dc8..51927eae73 100644 --- a/ext/theora/gsttheoradec.c +++ b/ext/theora/gsttheoradec.c @@ -711,8 +711,6 @@ theora_handle_data_packet (GstTheoraDec * dec, ogg_packet * packet, goto wrong_dimensions; result = theora_handle_image (dec, buf, frame); - if (result != GST_FLOW_OK) - return result; return result;