mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer.git
synced 2024-12-19 06:46:38 +00:00
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:
parent
0582d5a1bc
commit
01778c5ac9
1 changed files with 1 additions and 0 deletions
|
@ -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;
|
||||
|
|
Loading…
Reference in a new issue