diff options
author | Michael Roitzsch <mroi@users.sourceforge.net> | 2003-10-12 19:15:41 +0000 |
---|---|---|
committer | Michael Roitzsch <mroi@users.sourceforge.net> | 2003-10-12 19:15:41 +0000 |
commit | 79c2688da2bb51470cb3ce527327ac18b6911834 (patch) | |
tree | 32395c5281dd4c1990a30c435f4627c7c18d0b9b | |
parent | 7188be2a32a38b558a93df8ded94a9ca1e054b4b (diff) | |
download | xine-lib-79c2688da2bb51470cb3ce527327ac18b6911834.tar.gz xine-lib-79c2688da2bb51470cb3ce527327ac18b6911834.tar.bz2 |
small reorg
CVS patchset: 5497
CVS date: 2003/10/12 19:15:41
-rw-r--r-- | include/xine.h.in | 22 |
1 files changed, 11 insertions, 11 deletions
diff --git a/include/xine.h.in b/include/xine.h.in index 355b55a45..abc78d81f 100644 --- a/include/xine.h.in +++ b/include/xine.h.in @@ -17,7 +17,7 @@ * along with this program; if not, write to the Free Software * Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA * - * $Id: xine.h.in,v 1.97 2003/10/06 21:52:42 miguelfreitas Exp $ + * $Id: xine.h.in,v 1.98 2003/10/12 19:15:41 mroi Exp $ * * public xine-lib (libxine) interface and documentation * @@ -1677,7 +1677,7 @@ void xine_osd_set_font (xine_osd_t *self, const char *fontname, * "" ... means current locale encoding (default) * NULL ... means latin1 */ -void xine_osd_set_encoding(xine_osd_t *self, const char *encoding); +void xine_osd_set_encoding(xine_osd_t *self, const char *encoding); /* set position were overlay will be blended */ void xine_osd_set_position (xine_osd_t *self, int x, int y); void xine_osd_show (xine_osd_t *self, int64_t vpts); @@ -1685,15 +1685,6 @@ void xine_osd_hide (xine_osd_t *self, int64_t vpts); /* empty drawing area */ void xine_osd_clear (xine_osd_t *self); /* - * close osd rendering engine - * loaded fonts are unloaded - * osd objects are closed - */ -void xine_osd_free (xine_osd_t *self); -void xine_osd_set_palette (xine_osd_t *self, - const uint32_t *const color, - const uint8_t *const trans ); -/* * set on existing text palette * (-1 to set used specified palette) * @@ -1709,6 +1700,15 @@ void xine_osd_set_text_palette (xine_osd_t *self, /* get palette (color and transparency) */ void xine_osd_get_palette (xine_osd_t *self, uint32_t *color, uint8_t *trans); +void xine_osd_set_palette (xine_osd_t *self, + const uint32_t *const color, + const uint8_t *const trans ); +/* + * close osd rendering engine + * loaded fonts are unloaded + * osd objects are closed + */ +void xine_osd_free (xine_osd_t *self); #ifndef XINE_DISABLE_DEPRECATED_FEATURES |