comparison eosd.h @ 31928:47c6a74eba0f

Forgot to svn add those two files.
author cigaes
date Mon, 23 Aug 2010 19:22:03 +0000
parents
children 30b03b5dbb3d
comparison
equal deleted inserted replaced
31927:6e0b5a97e00f 31928:47c6a74eba0f
1 /*
2 * Extended On Screen Display
3 * Copyright (C) 2010 Nicolas George
4 *
5 * This file is part of MPlayer.
6 *
7 * MPlayer is free software; you can redistribute it and/or modify
8 * it under the terms of the GNU General Public License as published by
9 * the Free Software Foundation; either version 2 of the License, or
10 * (at your option) any later version.
11 *
12 * MPlayer is distributed in the hope that it will be useful,
13 * but WITHOUT ANY WARRANTY; without even the implied warranty of
14 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
15 * GNU General Public License for more details.
16 *
17 * You should have received a copy of the GNU General Public License along
18 * with MPlayer; if not, write to the Free Software Foundation, Inc.,
19 * 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.
20 */
21
22 #ifndef MPLAYER_EOSD_H
23 #define MPLAYER_EOSD_H
24
25 void eosd_init(vf_instance_t *);
26
27 void eosd_configure(mp_eosd_res_t *, int);
28 ASS_Image *eosd_render_frame(double, int *);
29 void eosd_uninit(void);
30
31 void eosd_ass_init(ASS_Library *);
32
33 #endif /* MPLAYER_EOSD_H */