2006-10-28 15:07:18 +00:00
|
|
|
// -*- c-basic-offset: 8; indent-tabs-mode: t -*-
|
|
|
|
// vim:ts=8:sw=8:noet:ai:
|
|
|
|
/*
|
2008-05-13 08:02:23 +00:00
|
|
|
* Copyright (C) 2006 Evgeniy Stepanov <eugeni.stepanov@gmail.com>
|
|
|
|
*
|
2008-05-14 17:21:58 +00:00
|
|
|
* This file is part of libass.
|
2008-05-13 08:02:23 +00:00
|
|
|
*
|
2008-05-14 17:21:58 +00:00
|
|
|
* libass is free software; you can redistribute it and/or modify
|
2008-05-13 08:02:23 +00:00
|
|
|
* 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.
|
|
|
|
*
|
2008-05-14 17:21:58 +00:00
|
|
|
* libass is distributed in the hope that it will be useful,
|
2008-05-13 08:02:23 +00:00
|
|
|
* 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
|
2008-05-14 17:21:58 +00:00
|
|
|
* with libass; if not, write to the Free Software Foundation, Inc.,
|
2008-05-13 08:02:23 +00:00
|
|
|
* 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.
|
|
|
|
*/
|
2006-10-28 15:07:18 +00:00
|
|
|
|
2008-01-29 23:25:11 +00:00
|
|
|
#ifndef LIBASS_LIBRARY_H
|
|
|
|
#define LIBASS_LIBRARY_H
|
2006-10-28 15:07:18 +00:00
|
|
|
|
2006-12-03 17:59:13 +00:00
|
|
|
typedef struct ass_fontdata_s {
|
|
|
|
char* name;
|
|
|
|
char* data;
|
|
|
|
int size;
|
|
|
|
} ass_fontdata_t;
|
|
|
|
|
2006-10-28 15:07:18 +00:00
|
|
|
struct ass_library_s {
|
|
|
|
char* fonts_dir;
|
|
|
|
int extract_fonts;
|
|
|
|
char** style_overrides;
|
2006-12-03 17:59:13 +00:00
|
|
|
|
|
|
|
ass_fontdata_t* fontdata;
|
|
|
|
int num_fontdata;
|
2006-10-28 15:07:18 +00:00
|
|
|
};
|
|
|
|
|
2008-01-29 23:25:11 +00:00
|
|
|
#endif /* LIBASS_LIBRARY_H */
|