Commit 1df51e7c authored by Laurent Aimar's avatar Laurent Aimar

Added amissing const to filter_Blend.

parent 389b365d
......@@ -197,7 +197,7 @@ VLC_EXPORT( int, filter_ConfigureBlend, ( filter_t *, int i_dst_width, int i_dst
*
* The input picture is not modified and not released.
*/
VLC_EXPORT( int, filter_Blend, ( filter_t *, picture_t *p_dst, int i_dst_x, int i_dst_y, picture_t *p_src, int i_alpha ) );
VLC_EXPORT( int, filter_Blend, ( filter_t *, picture_t *p_dst, int i_dst_x, int i_dst_y, const picture_t *p_src, int i_alpha ) );
/**
* It destroys a blend filter created by filter_NewBlend.
......
......@@ -88,7 +88,7 @@ int filter_ConfigureBlend( filter_t *p_blend,
int filter_Blend( filter_t *p_blend,
picture_t *p_dst, int i_dst_x, int i_dst_y,
picture_t *p_src, int i_alpha )
const picture_t *p_src, int i_alpha )
{
if( !p_blend->p_module )
return VLC_EGENERIC;
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment