mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer.git
synced 2025-03-28 20:05:38 +00:00
video-blend: Actually allow negative offsets in the function signature too
This commit is contained in:
parent
aeb6a6ee71
commit
1af6f94d84
2 changed files with 2 additions and 2 deletions
|
@ -1338,7 +1338,7 @@ video_blend_scale_linear_RGBA (GstBlendVideoFormatInfo * src,
|
|||
*/
|
||||
gboolean
|
||||
video_blend (GstBlendVideoFormatInfo * dest,
|
||||
GstBlendVideoFormatInfo * src, guint x, guint y)
|
||||
GstBlendVideoFormatInfo * src, gint x, gint y)
|
||||
{
|
||||
guint i, j;
|
||||
guint8 alpha;
|
||||
|
|
|
@ -71,6 +71,6 @@ void video_blend_scale_linear_RGBA (GstBlendVideoFormatInfo * src,
|
|||
|
||||
gboolean video_blend (GstBlendVideoFormatInfo * dest,
|
||||
GstBlendVideoFormatInfo * src,
|
||||
guint x, guint y);
|
||||
gint x, gint y);
|
||||
|
||||
#endif
|
||||
|
|
Loading…
Reference in a new issue