diff options
author | Petri Hintukainen <phintuka@users.sourceforge.net> | 2014-05-13 15:16:19 +0300 |
---|---|---|
committer | Petri Hintukainen <phintuka@users.sourceforge.net> | 2014-05-13 15:16:19 +0300 |
commit | 15f8b6aaa9c6fd0c93accb819023cbb7d65c555c (patch) | |
tree | dd4ce00e45ef74cfb65c66d60087c1fa5a16a008 /include/xine | |
parent | 29cc3edd7dcb15a7f9d1a8f0e912001be32de320 (diff) | |
download | xine-lib-15f8b6aaa9c6fd0c93accb819023cbb7d65c555c.tar.gz xine-lib-15f8b6aaa9c6fd0c93accb819023cbb7d65c555c.tar.bz2 |
Factorize rle uncompression code from raw, vaapi and opengl2 drivers.
Fix highlight area and buffer overflows.
Diffstat (limited to 'include/xine')
-rw-r--r-- | include/xine/video_overlay.h | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/include/xine/video_overlay.h b/include/xine/video_overlay.h index 9fc9f9202..c82227513 100644 --- a/include/xine/video_overlay.h +++ b/include/xine/video_overlay.h @@ -62,5 +62,6 @@ typedef struct video_overlay_event_s { video_overlay_manager_t *_x_video_overlay_new_manager(xine_t *) XINE_MALLOC XINE_PROTECTED; void _x_overlay_clut_yuv2rgb(vo_overlay_t *overlay) XINE_PROTECTED; +void _x_overlay_to_argb32(const vo_overlay_t *overlay, uint32_t *rgba, int stride, const char *format) XINE_PROTECTED; #endif |