2007-04-09 04:02:40 +02:00
|
|
|
/*
|
2008-12-28 09:09:59 +01:00
|
|
|
* Copyright (C) 2006 Evgeniy Stepanov <eugeni.stepanov@gmail.com>
|
|
|
|
*
|
|
|
|
* This file is part of libass.
|
|
|
|
*
|
|
|
|
* libass 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.
|
|
|
|
*
|
|
|
|
* libass 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 libass; if not, write to the Free Software Foundation, Inc.,
|
|
|
|
* 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.
|
|
|
|
*/
|
2007-04-09 04:02:40 +02:00
|
|
|
|
2008-03-21 06:32:23 +01:00
|
|
|
#ifndef LIBASS_LIBRARY_H
|
|
|
|
#define LIBASS_LIBRARY_H
|
2007-04-09 04:02:40 +02:00
|
|
|
|
2009-07-14 00:43:25 +02:00
|
|
|
#include <stdarg.h>
|
|
|
|
|
2009-09-02 03:23:51 +02:00
|
|
|
typedef struct {
|
2009-07-11 17:48:50 +02:00
|
|
|
char *name;
|
|
|
|
char *data;
|
|
|
|
int size;
|
2009-09-02 03:23:51 +02:00
|
|
|
} ASS_Fontdata;
|
2007-04-09 04:02:40 +02:00
|
|
|
|
2009-09-02 03:23:51 +02:00
|
|
|
struct ass_library {
|
2009-07-11 17:48:50 +02:00
|
|
|
char *fonts_dir;
|
|
|
|
int extract_fonts;
|
|
|
|
char **style_overrides;
|
2007-04-09 04:02:40 +02:00
|
|
|
|
2009-09-02 03:23:51 +02:00
|
|
|
ASS_Fontdata *fontdata;
|
2009-07-11 17:48:50 +02:00
|
|
|
int num_fontdata;
|
2009-09-02 03:23:51 +02:00
|
|
|
void (*msg_callback)(int, const char *, va_list, void *);
|
2009-07-14 00:43:25 +02:00
|
|
|
void *msg_callback_data;
|
2007-04-09 04:02:40 +02:00
|
|
|
};
|
|
|
|
|
2009-07-11 17:48:50 +02:00
|
|
|
#endif /* LIBASS_LIBRARY_H */
|