summaryrefslogtreecommitdiffstats
path: root/subreader.h
blob: e274dcc7220c3474047e86842ef2845cf1645061 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28

#ifndef __MPLAYER_SUBREADER_H
#define __MPLAYER_SUBREADER_H

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
			// 3 for SAMI (smi)

#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 );

#endif