summaryrefslogtreecommitdiffstats
path: root/subreader.h
diff options
context:
space:
mode:
Diffstat (limited to 'subreader.h')
-rw-r--r--subreader.h19
1 files changed, 19 insertions, 0 deletions
diff --git a/subreader.h b/subreader.h
new file mode 100644
index 0000000000..41fbec278b
--- /dev/null
+++ b/subreader.h
@@ -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);