ao_pcm: fix pointless message due to uninitialize variable
[mplayer.git] / sub / ass_mp.h
blob5658f4f8c10a16d600a7cc48cdba289bbc6b3090
1 /*
2 * Copyright (C) 2006 Evgeniy Stepanov <eugeni.stepanov@gmail.com>
4 * This file is part of MPlayer.
6 * MPlayer is free software; you can redistribute it and/or modify
7 * it under the terms of the GNU General Public License as published by
8 * the Free Software Foundation; either version 2 of the License, or
9 * (at your option) any later version.
11 * MPlayer is distributed in the hope that it will be useful,
12 * but WITHOUT ANY WARRANTY; without even the implied warranty of
13 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
14 * GNU General Public License for more details.
16 * You should have received a copy of the GNU General Public License along
17 * with libass; if not, write to the Free Software Foundation, Inc.,
18 * 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.
21 #ifndef MPLAYER_ASS_MP_H
22 #define MPLAYER_ASS_MP_H
24 #include <stdint.h>
25 #include <stdbool.h>
27 #include "config.h"
28 #include "subreader.h"
30 #ifdef CONFIG_ASS
31 #include <ass/ass.h>
32 #include <ass/ass_types.h>
34 extern float ass_font_scale;
35 extern float ass_line_spacing;
36 extern int ass_top_margin;
37 extern int ass_bottom_margin;
38 extern int use_embedded_fonts;
39 extern int ass_use_margins;
40 extern char *ass_color;
41 extern char *ass_border_color;
42 extern char *ass_styles_file;
43 extern int ass_hinting;
45 ASS_Track *mp_ass_default_track(ASS_Library *library);
46 ASS_Track *mp_ass_read_subdata(ASS_Library *library, sub_data *subdata,
47 double fps);
48 ASS_Track *mp_ass_read_stream(ASS_Library *library, const char *fname,
49 char *charset);
51 void mp_ass_configure(ASS_Renderer *priv, int w, int h, bool unscaled);
52 void mp_ass_configure_fonts(ASS_Renderer *priv);
53 ASS_Library *mp_ass_init(void);
55 void mp_ass_reload_options(ASS_Renderer *priv, struct MPOpts *opts);
57 #else /* CONFIG_ASS */
59 /* Needed for EOSD code using this type to compile */
61 typedef struct ass_image {
62 int w, h;
63 int stride;
64 unsigned char *bitmap;
65 uint32_t color;
66 int dst_x, dst_y;
67 struct ass_image *next;
68 } ASS_Image;
70 #endif
72 typedef struct {
73 ASS_Image *imgs;
74 int changed;
75 } mp_eosd_images_t;
78 #endif /* MPLAYER_ASS_MP_H */