diff subreader.h @ 258:66017e126280

subtitles (.sub files) support
author arpi_esp
date Fri, 30 Mar 2001 03:07:45 +0000
parents
children 1b2cd175236f
line wrap: on
line diff
--- /dev/null	Thu Jan 01 00:00:00 1970 +0000
+++ b/subreader.h	Fri Mar 30 03:07:45 2001 +0000
@@ -0,0 +1,19 @@
+
+extern int sub_uses_time;
+extern int sub_errs;
+extern int sub_num;         // number of subtitle structs
+extern int sub_format;     // 0 for microdvd, 1 for SubRip, 2 for the third format
+
+#define SUB_MAX_TEXT 5
+
+typedef struct {
+
+    int lines;
+
+    unsigned long start;
+    unsigned long end;
+    
+    char *text[SUB_MAX_TEXT];
+} subtitle;
+
+subtitle* sub_read_file (char *filename);