diff options
Diffstat (limited to 'src/video_out/alphablend.h')
-rw-r--r-- | src/video_out/alphablend.h | 20 |
1 files changed, 11 insertions, 9 deletions
diff --git a/src/video_out/alphablend.h b/src/video_out/alphablend.h index 66f4e512b..c973c59ed 100644 --- a/src/video_out/alphablend.h +++ b/src/video_out/alphablend.h @@ -35,15 +35,17 @@ typedef struct { /* CLUT == Color LookUp Table */ uint8_t foo : 8; } __attribute__ ((packed)) clut_t; -void blend_rgb16 (uint8_t * img, vo_overlay_t * overlay, int width, - int height); -void blend_rgb24 (uint8_t * img, vo_overlay_t * overlay, int width, - int height); -void blend_rgb32 (uint8_t * img, vo_overlay_t * overlay, int width, - int height); -void blend_yuv (uint8_t * img, vo_overlay_t * overlay, int width, - - int height); +void blend_rgb16 (uint8_t * img, vo_overlay_t * overlay, + int img_width, int img_height, + int delivered_width, int delivered_height); +void blend_rgb24 (uint8_t * img, vo_overlay_t * overlay, + int img_width, int img_height, + int delivered_iwdth, int delivered_height); +void blend_rgb32 (uint8_t * img, vo_overlay_t * overlay, + int img_width, int img_height, + int delivered_iwdth, int delivered_height); +void blend_yuv (uint8_t * img, vo_overlay_t * overlay, + int width, int height); void crop_overlay (vo_overlay_t * overlay); #endif |