From 74f4b1800b7b8d69158ae6e24db632cc2d19c2c9 Mon Sep 17 00:00:00 2001 From: Seven Du Date: Sat, 31 Jan 2015 12:29:32 +0800 Subject: [PATCH] FS-7513: fix copy and paste error --- src/mod/applications/mod_conference/mod_conference.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/mod/applications/mod_conference/mod_conference.c b/src/mod/applications/mod_conference/mod_conference.c index 7afc3f7f85..2fae9b5ea2 100644 --- a/src/mod/applications/mod_conference/mod_conference.c +++ b/src/mod/applications/mod_conference/mod_conference.c @@ -864,7 +864,7 @@ static void reset_image(switch_image_t *img, bgcolor_yuv_t *color) for (i = 0; i < img->h / 2; i++) { memset(img->planes[SWITCH_PLANE_U] + img->stride[SWITCH_PLANE_U] * i, color->u, img->d_w / 2); - memset(img->planes[SWITCH_PLANE_V] + img->stride[SWITCH_PLANE_U] * i, color->v, img->d_w / 2); + memset(img->planes[SWITCH_PLANE_V] + img->stride[SWITCH_PLANE_V] * i, color->v, img->d_w / 2); } }