1
0
mirror of https://github.com/mpv-player/mpv synced 2024-12-15 11:25:10 +00:00
mpv/subreader.h
pontscho 7eef93819f add sub autodetect
git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@510 b3059339-0415-0410-9bf9-f77b7e298cf2
2001-04-18 20:25:04 +00:00

21 lines
423 B
C

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);
char * sub_filename( char * fname );