FS-10050: [core] chromakey

This commit is contained in:
Anthony Minessale 2017-03-03 18:10:40 -06:00
parent 666e875416
commit 776bf7995a
1 changed files with 1 additions and 1 deletions

View File

@ -384,7 +384,7 @@ SWITCH_DECLARE(void) switch_img_patch_rgb(switch_image_t *IMG, switch_image_t *i
src_argb1 += src_stride_argb1; src_argb1 += src_stride_argb1;
dst_argb += dst_stride_argb; dst_argb += dst_stride_argb;
} }
ARGBUnattenuate(src_argb0, src_stride_argb0, src_argb0, src_stride_argb0, img->d_w, img->d_h); ARGBUnattenuate(img->planes[SWITCH_PLANE_PACKED], src_stride_argb0, img->planes[SWITCH_PLANE_PACKED], src_stride_argb0, img->d_w, img->d_h);
} }
} }