matroskademux: remove unnecessary check

No matter if gst_matroska_read_common_parse_index_cuetrack () returns that the
flow is OK or not, the check there will be a break from the switch. Removing the
check since the outcome is the same.

CID #1265762
This commit is contained in:
Luis de Bethencourt 2015-01-23 17:35:51 +00:00
parent 932b32bb6e
commit 1e15808563

View file

@ -1503,10 +1503,8 @@ gst_matroska_read_common_parse_index_pointentry (GstMatroskaReadCommon *
/* position in the file + track to which it belongs */
case GST_MATROSKA_ID_CUETRACKPOSITIONS:
{
if ((ret =
gst_matroska_read_common_parse_index_cuetrack (common, ebml,
&nentries)) != GST_FLOW_OK)
break;
ret = gst_matroska_read_common_parse_index_cuetrack (common, ebml,
&nentries);
break;
}