gst/subparse/gstsubparse.c: Don't require subrip (.srt) files to start with a chunk...
authorTim-Philipp Müller <tim@centricular.net>
Wed, 18 Oct 2006 15:13:59 +0000 (15:13 +0000)
committerTim-Philipp Müller <tim@centricular.net>
Wed, 18 Oct 2006 15:13:59 +0000 (15:13 +0000)
Original commit message from CVS:
* gst/subparse/gstsubparse.c:
(gst_sub_parse_data_format_autodetect):
Don't require subrip (.srt) files to start with a chunk number of 1.

ChangeLog
gst/subparse/gstsubparse.c

index 1651554..6f1ebd9 100644 (file)
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,9 @@
+2006-10-18  Tim-Philipp Müller  <tim at centricular dot net>
+
+       * gst/subparse/gstsubparse.c:
+       (gst_sub_parse_data_format_autodetect):
+         Don't require subrip (.srt) files to start with a chunk number of 1.
+
 2006-10-18  Wim Taymans  <wim@fluendo.com>
 
        * gst-libs/gst/audio/gstbaseaudiosink.c:
index 8771054..a073c82 100644 (file)
@@ -677,7 +677,7 @@ gst_sub_parse_data_format_autodetect (gchar * match_str)
     need_init_regexps = FALSE;
     if ((err = regcomp (&mdvd_rx, "^\\{[0-9]+\\}\\{[0-9]+\\}",
                 REG_EXTENDED | REG_NEWLINE | REG_NOSUB) != 0) ||
-        (err = regcomp (&subrip_rx, "^1(\x0d)?\x0a"
+        (err = regcomp (&subrip_rx, "^[1-9]([0-9]){0,3}(\x0d)?\x0a"
                 "[0-9][0-9]:[0-9][0-9]:[0-9][0-9],[0-9]{3}"
                 " --> [0-9][0-9]:[0-9][0-9]:[0-9][0-9],[0-9]{3}",
                 REG_EXTENDED | REG_NEWLINE | REG_NOSUB)) != 0) {