Mercurial > mplayer.hg
view subreader.h @ 534:2a45d5adcc88
do not query vo drivers for format 0xFFFFFFFF (thanx to szabi)
author | arpi_esp |
---|---|
date | Thu, 19 Apr 2001 22:21:30 +0000 |
parents | 1b2cd175236f |
children | 41d6eec69b60 |
line wrap: on
line source
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 );