mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer.git
synced 2024-11-24 02:31:03 +00:00
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:
parent
932b32bb6e
commit
1e15808563
1 changed files with 2 additions and 4 deletions
|
@ -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;
|
||||
}
|
||||
|
||||
|
|
Loading…
Reference in a new issue