diff options
author | Torsten Jager <t.jager@gmx.de> | 2013-01-21 10:23:56 +0200 |
---|---|---|
committer | Torsten Jager <t.jager@gmx.de> | 2013-01-21 10:23:56 +0200 |
commit | b6b7e64e4e578247b7d8a08f641ed937c7405700 (patch) | |
tree | f8682c52fc7900d5b1a4211314d3ada393194c6d /include/xine | |
parent | 0a561430b28f845f9f428d834a6d94eadba88f14 (diff) | |
download | xine-lib-b6b7e64e4e578247b7d8a08f641ed937c7405700.tar.gz xine-lib-b6b7e64e4e578247b7d8a08f641ed937c7405700.tar.bz2 |
rgb2yuy2: added 16/15/8 bit formats
Diffstat (limited to 'include/xine')
-rw-r--r-- | include/xine/xineutils.h | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/include/xine/xineutils.h b/include/xine/xineutils.h index 1576415a6..927698618 100644 --- a/include/xine/xineutils.h +++ b/include/xine/xineutils.h @@ -312,6 +312,8 @@ extern void *rgb2yuy2_alloc (int color_matrix, const char *format) XINE_PROTECTE extern void rgb2yuy2_free (void *rgb2yuy2) XINE_PROTECTED; extern void rgb2yuy2_slice (void *rgb2yuy2, const uint8_t *in, int ipitch, uint8_t *out, int opitch, int width, int height) XINE_PROTECTED; +extern void rgb2yuy2_palette (void *rgb2yuy2, const uint8_t *pal, int num_colors, int bits_per_pixel) + XINE_PROTECTED; /* frame copying functions */ |