]> git.ipfire.org Git - thirdparty/freeswitch.git/commitdiff
FS-7513: fix copy and paste error
authorSeven Du <dujinfang@gmail.com>
Sat, 31 Jan 2015 04:29:32 +0000 (12:29 +0800)
committerMichael Jerris <mike@jerris.com>
Thu, 28 May 2015 17:46:57 +0000 (12:46 -0500)
src/mod/applications/mod_conference/mod_conference.c

index 7afc3f7f85a2f5402c103764d38b4aaacf5b7982..2fae9b5ea217187fb08f2438b09b324c8a4cb001 100644 (file)
@@ -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);
        }
 }