view subreader.h @ 2594:1486c690bece

added macros for weirdos (irix/sunos) fixed some messages rewrite OS names if necessary (irix/cygwin) added mips known type {sdl,sdl11,gtk,gtk12,glib,glib12}-config autodetection
author pl
date Wed, 31 Oct 2001 18:25:28 +0000
parents 18f4dd5d568f
children 2f04b5f9a615
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)
		       // 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 );
void list_sub_file(subtitle* subs);

#endif