videobox: Fix floating point to integer conversion for the alpha values

Fixes bug #619835.
This commit is contained in:
Sebastian Dröge 2010-05-27 18:08:17 +02:00
parent 64a01683ad
commit ad9ffeed03

View file

@ -3269,8 +3269,8 @@ static void
gst_video_box_process (GstVideoBox * video_box, const guint8 * src,
guint8 * dest)
{
guint b_alpha = CLAMP ((guint) video_box->border_alpha * 256, 0, 256);
guint i_alpha = CLAMP ((guint) video_box->alpha * 256, 0, 256);
guint b_alpha = CLAMP (video_box->border_alpha * 256, 0, 256);
guint i_alpha = CLAMP (video_box->alpha * 256, 0, 256);
GstVideoBoxFill fill_type = video_box->fill_type;
gint br, bl, bt, bb, crop_w, crop_h;