subparse: add missing break between formats

A break is missing at the end of case GST_SUB_PARSE_FORMAT_LRC or it will
fallthrough to WebVTT. This fixes commit fd2a14144a.
This commit is contained in:
Luis de Bethencourt 2016-03-29 10:23:08 +01:00 committed by Luis
parent 0582d5a1bc
commit 01778c5ac9

View file

@ -2024,6 +2024,7 @@ gst_subparse_type_find (GstTypeFind * tf, gpointer private)
case GST_SUB_PARSE_FORMAT_LRC:
GST_DEBUG ("LRC format detected");
caps = LRC_CAPS;
break;
case GST_SUB_PARSE_FORMAT_VTT:
GST_DEBUG ("WebVTT format detected");
caps = VTT_CAPS;