mirror of
https://github.com/mpv-player/mpv
synced 2024-10-30 04:46:41 +01:00
d7f6f3e341
git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@922 b3059339-0415-0410-9bf9-f77b7e298cf2
30 lines
609 B
C
30 lines
609 B
C
|
|
#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)
|
|
// 4 for vplayer format
|
|
// other stuff in subreader.c
|
|
#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 *path, char * fname );
|
|
|
|
#endif
|