Mercurial > mplayer.hg
view subreader.h @ 691:3693fd4c4ec2
- finally: 15to16 conversion included!!!
author | acki2 |
---|---|
date | Thu, 03 May 2001 22:39:38 +0000 |
parents | 44b764d348a0 |
children | 16ba80b47ec4 |
line wrap: on
line source
#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