]> git.sesse.net Git - vlc/blobdiff - include/vlc_filter.h
Added amissing const to filter_Blend.
[vlc] / include / vlc_filter.h
index cb0f7456c9be1fdce399647740a90d884a24d8bd..a8a8a06d35c6a197f14f9345a4fcf80ef04cf54d 100644 (file)
@@ -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.