From: Seven Du Date: Sat, 31 Jan 2015 04:29:32 +0000 (+0800) Subject: FS-7513: fix copy and paste error X-Git-Tag: v1.6.2~614^2~448 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=74f4b1800b7b8d69158ae6e24db632cc2d19c2c9;p=thirdparty%2Ffreeswitch.git FS-7513: fix copy and paste error --- 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); } }