2009-07-25 04:24:39 +00:00
|
|
|
/*
|
|
|
|
* Copyright (C) 2006 Evgeniy Stepanov <eugeni.stepanov@gmail.com>
|
|
|
|
*
|
|
|
|
* 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 libass; if not, write to the Free Software Foundation, Inc.,
|
|
|
|
* 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.
|
|
|
|
*/
|
|
|
|
|
|
|
|
#ifndef MPLAYER_ASS_MP_H
|
|
|
|
#define MPLAYER_ASS_MP_H
|
|
|
|
|
|
|
|
#include <stdint.h>
|
2011-01-19 16:00:22 +00:00
|
|
|
#include <stdbool.h>
|
2009-07-25 04:24:39 +00:00
|
|
|
|
2010-10-30 16:39:40 +00:00
|
|
|
#include "config.h"
|
2009-07-25 04:24:39 +00:00
|
|
|
#include "subreader.h"
|
|
|
|
|
2012-11-17 19:56:45 +00:00
|
|
|
// font sizes and explicit tags in subassconvert.c assume this size (?)
|
|
|
|
#define MP_ASS_FONT_PLAYRESY 288
|
|
|
|
|
|
|
|
#define MP_ASS_RGBA(r, g, b, a) \
|
|
|
|
(((r) << 24U) | ((g) << 16) | ((b) << 8) | (0xFF - (a)))
|
|
|
|
|
|
|
|
// m_color argument
|
|
|
|
#define MP_ASS_COLOR(c) MP_ASS_RGBA((c).r, (c).g, (c).b, (c).a)
|
|
|
|
|
2009-07-25 04:24:39 +00:00
|
|
|
#ifdef CONFIG_ASS
|
|
|
|
#include <ass/ass.h>
|
|
|
|
#include <ass/ass_types.h>
|
|
|
|
|
2012-08-25 14:47:50 +00:00
|
|
|
struct MPOpts;
|
VO, sub: refactor
Remove VFCTRL_DRAW_OSD, VFCAP_EOSD_FILTER, VFCAP_EOSD_RGBA, VFCAP_EOSD,
VOCTRL_DRAW_EOSD, VOCTRL_GET_EOSD_RES, VOCTRL_QUERY_EOSD_FORMAT.
Remove draw_osd_with_eosd(), which rendered the OSD by calling
VOCTRL_DRAW_EOSD. Change VOs to call osd_draw() directly, which takes
a callback as argument. (This basically works like the old OSD API,
except multiple OSD bitmap formats are supported and caching is
possible.)
Remove all mentions of "eosd". It's simply "osd" now.
Make OSD size per-OSD-object, as they can be different when using
vf_sub. Include display_par/video_par in resolution change detection.
Fix the issue with margin borders in vo_corevideo.
2012-10-19 17:25:18 +00:00
|
|
|
struct mp_osd_res;
|
2012-11-17 19:56:45 +00:00
|
|
|
struct osd_style_opts;
|
|
|
|
|
|
|
|
void mp_ass_set_style(ASS_Style *style, struct osd_style_opts *opts);
|
2012-08-25 14:47:50 +00:00
|
|
|
|
2011-09-03 10:47:56 +00:00
|
|
|
ASS_Track *mp_ass_default_track(ASS_Library *library, struct MPOpts *opts);
|
|
|
|
ASS_Track *mp_ass_read_subdata(ASS_Library *library, struct MPOpts *opts,
|
|
|
|
sub_data *subdata, double fps);
|
2011-01-20 16:47:18 +00:00
|
|
|
ASS_Track *mp_ass_read_stream(ASS_Library *library, const char *fname,
|
|
|
|
char *charset);
|
2009-07-25 04:24:39 +00:00
|
|
|
|
2011-09-03 10:47:56 +00:00
|
|
|
struct MPOpts;
|
2012-08-25 14:47:50 +00:00
|
|
|
void mp_ass_configure(ASS_Renderer *priv, struct MPOpts *opts,
|
VO, sub: refactor
Remove VFCTRL_DRAW_OSD, VFCAP_EOSD_FILTER, VFCAP_EOSD_RGBA, VFCAP_EOSD,
VOCTRL_DRAW_EOSD, VOCTRL_GET_EOSD_RES, VOCTRL_QUERY_EOSD_FORMAT.
Remove draw_osd_with_eosd(), which rendered the OSD by calling
VOCTRL_DRAW_EOSD. Change VOs to call osd_draw() directly, which takes
a callback as argument. (This basically works like the old OSD API,
except multiple OSD bitmap formats are supported and caching is
possible.)
Remove all mentions of "eosd". It's simply "osd" now.
Make OSD size per-OSD-object, as they can be different when using
vf_sub. Include display_par/video_par in resolution change detection.
Fix the issue with margin borders in vo_corevideo.
2012-10-19 17:25:18 +00:00
|
|
|
struct mp_osd_res *dim);
|
2012-11-17 19:56:45 +00:00
|
|
|
void mp_ass_configure_fonts(ASS_Renderer *priv, struct osd_style_opts *opts);
|
2011-09-03 10:47:56 +00:00
|
|
|
ASS_Library *mp_ass_init(struct MPOpts *opts);
|
2009-07-25 04:24:39 +00:00
|
|
|
|
2012-09-28 19:38:52 +00:00
|
|
|
struct sub_bitmap;
|
|
|
|
struct sub_bitmaps;
|
|
|
|
void mp_ass_render_frame(ASS_Renderer *renderer, ASS_Track *track, double time,
|
|
|
|
struct sub_bitmap **parts, struct sub_bitmaps *res);
|
|
|
|
|
2009-07-25 04:24:39 +00:00
|
|
|
#else /* CONFIG_ASS */
|
|
|
|
|
VO, sub: refactor
Remove VFCTRL_DRAW_OSD, VFCAP_EOSD_FILTER, VFCAP_EOSD_RGBA, VFCAP_EOSD,
VOCTRL_DRAW_EOSD, VOCTRL_GET_EOSD_RES, VOCTRL_QUERY_EOSD_FORMAT.
Remove draw_osd_with_eosd(), which rendered the OSD by calling
VOCTRL_DRAW_EOSD. Change VOs to call osd_draw() directly, which takes
a callback as argument. (This basically works like the old OSD API,
except multiple OSD bitmap formats are supported and caching is
possible.)
Remove all mentions of "eosd". It's simply "osd" now.
Make OSD size per-OSD-object, as they can be different when using
vf_sub. Include display_par/video_par in resolution change detection.
Fix the issue with margin borders in vo_corevideo.
2012-10-19 17:25:18 +00:00
|
|
|
/* Needed for OSD code using this type to compile */
|
2009-07-25 04:24:39 +00:00
|
|
|
|
|
|
|
typedef struct ass_image {
|
|
|
|
int w, h;
|
|
|
|
int stride;
|
|
|
|
unsigned char *bitmap;
|
|
|
|
uint32_t color;
|
|
|
|
int dst_x, dst_y;
|
|
|
|
struct ass_image *next;
|
2009-08-06 20:58:31 +00:00
|
|
|
} ASS_Image;
|
2009-07-25 04:24:39 +00:00
|
|
|
|
|
|
|
#endif
|
|
|
|
|
|
|
|
#endif /* MPLAYER_ASS_MP_H */
|