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.
|
|
|
|
*
|
2010-11-11 05:48:08 +01:00
|
|
|
* Permission to use, copy, modify, and distribute this software for any
|
|
|
|
* purpose with or without fee is hereby granted, provided that the above
|
|
|
|
* copyright notice and this permission notice appear in all copies.
|
2008-12-28 09:09:59 +01:00
|
|
|
*
|
2010-11-11 05:48:08 +01:00
|
|
|
* THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES
|
|
|
|
* WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF
|
|
|
|
* MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR
|
|
|
|
* ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES
|
|
|
|
* WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN
|
|
|
|
* ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF
|
|
|
|
* OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.
|
2008-12-28 09:09:59 +01:00
|
|
|
*/
|
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 */
|