2010-01-30 23:24:23 +00:00
|
|
|
/*
|
|
|
|
* This file is part of MPlayer.
|
|
|
|
*
|
|
|
|
* MPlayer is free software; you can redistribute it and/or modify
|
|
|
|
* it under the terms of the GNU General Public License as published by
|
|
|
|
* the Free Software Foundation; either version 2 of the License, or
|
|
|
|
* (at your option) any later version.
|
|
|
|
*
|
|
|
|
* MPlayer is distributed in the hope that it will be useful,
|
|
|
|
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
|
|
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
|
|
* GNU General Public License for more details.
|
|
|
|
*
|
|
|
|
* You should have received a copy of the GNU General Public License along
|
|
|
|
* with MPlayer; if not, write to the Free Software Foundation, Inc.,
|
|
|
|
* 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.
|
|
|
|
*/
|
|
|
|
|
2007-07-02 22:34:45 +00:00
|
|
|
#ifndef MPLAYER_SUBREADER_H
|
|
|
|
#define MPLAYER_SUBREADER_H
|
2001-04-24 11:42:04 +00:00
|
|
|
|
2004-07-28 17:03:09 +00:00
|
|
|
#include <stdio.h>
|
2010-05-18 22:05:25 +00:00
|
|
|
#include <stdbool.h>
|
2004-07-28 17:03:09 +00:00
|
|
|
|
2010-01-04 19:49:42 +00:00
|
|
|
#include "config.h"
|
|
|
|
|
2001-11-15 11:53:11 +00:00
|
|
|
// subtitle formats
|
|
|
|
#define SUB_INVALID -1
|
|
|
|
#define SUB_MICRODVD 0
|
|
|
|
#define SUB_SUBRIP 1
|
|
|
|
#define SUB_SUBVIEWER 2
|
|
|
|
#define SUB_SAMI 3
|
|
|
|
#define SUB_VPLAYER 4
|
|
|
|
#define SUB_RT 5
|
|
|
|
#define SUB_SSA 6
|
2004-01-29 10:53:19 +00:00
|
|
|
#define SUB_PJS 7
|
2001-11-15 11:53:11 +00:00
|
|
|
#define SUB_MPSUB 8
|
|
|
|
#define SUB_AQTITLE 9
|
2002-05-07 21:58:01 +00:00
|
|
|
#define SUB_SUBVIEWER2 10
|
2002-05-13 20:41:20 +00:00
|
|
|
#define SUB_SUBRIP09 11
|
2002-10-30 19:16:58 +00:00
|
|
|
#define SUB_JACOSUB 12
|
2004-04-06 11:52:31 +00:00
|
|
|
#define SUB_MPL2 13
|
2001-11-15 11:53:11 +00:00
|
|
|
|
2006-01-04 12:05:15 +00:00
|
|
|
#define SUB_MAX_TEXT 12
|
2004-09-15 13:16:52 +00:00
|
|
|
#define SUB_ALIGNMENT_BOTTOMLEFT 1
|
|
|
|
#define SUB_ALIGNMENT_BOTTOMCENTER 2
|
|
|
|
#define SUB_ALIGNMENT_BOTTOMRIGHT 3
|
|
|
|
#define SUB_ALIGNMENT_MIDDLELEFT 4
|
|
|
|
#define SUB_ALIGNMENT_MIDDLECENTER 5
|
|
|
|
#define SUB_ALIGNMENT_MIDDLERIGHT 6
|
|
|
|
#define SUB_ALIGNMENT_TOPLEFT 7
|
|
|
|
#define SUB_ALIGNMENT_TOPCENTER 8
|
|
|
|
#define SUB_ALIGNMENT_TOPRIGHT 9
|
2001-03-30 03:07:45 +00:00
|
|
|
|
2010-10-30 18:32:17 +00:00
|
|
|
typedef struct subtitle {
|
2001-03-30 03:07:45 +00:00
|
|
|
|
|
|
|
int lines;
|
|
|
|
|
|
|
|
unsigned long start;
|
|
|
|
unsigned long end;
|
2009-07-06 23:26:13 +00:00
|
|
|
|
2001-03-30 03:07:45 +00:00
|
|
|
char *text[SUB_MAX_TEXT];
|
2003-09-21 13:20:06 +00:00
|
|
|
unsigned char alignment;
|
2001-03-30 03:07:45 +00:00
|
|
|
} subtitle;
|
|
|
|
|
2010-10-30 18:32:17 +00:00
|
|
|
typedef struct sub_data {
|
2013-04-17 16:34:11 +00:00
|
|
|
const char *codec;
|
2003-04-07 16:04:02 +00:00
|
|
|
subtitle *subtitles;
|
|
|
|
char *filename;
|
2009-07-06 23:26:13 +00:00
|
|
|
int sub_uses_time;
|
2003-04-07 16:04:02 +00:00
|
|
|
int sub_num; // number of subtitle structs
|
|
|
|
int sub_errs;
|
2013-06-01 17:54:18 +00:00
|
|
|
double fallback_fps;
|
2003-04-07 16:04:02 +00:00
|
|
|
} sub_data;
|
|
|
|
|
2010-05-18 22:05:25 +00:00
|
|
|
struct MPOpts;
|
|
|
|
sub_data* sub_read_file (char *filename, float pts, struct MPOpts *opts);
|
2007-12-31 16:15:50 +00:00
|
|
|
|
|
|
|
#endif /* MPLAYER_SUBREADER_H */
|