# HG changeset patch # User reimar # Date 1390047334 0 # Node ID dabe5bcfc2e29e7844c58c88f55af638646b91cf # Parent cf65ac6b484205ab52cf8e766cb2419409a4ee67 Fix video size < blinkenlights size again. diff -r cf65ac6b4842 -r dabe5bcfc2e2 libvo/vo_bl.c --- a/libvo/vo_bl.c Sat Jan 18 11:59:59 2014 +0000 +++ b/libvo/vo_bl.c Sat Jan 18 12:15:34 2014 +0000 @@ -326,7 +326,7 @@ } static uint32_t draw_image(mp_image_t *mpi) { - memcpy_pic(image, mpi->planes[0], bl->width, bl->height, bl->width, mpi->stride[0]); + memcpy_pic(image, mpi->planes[0], mpi->w, mpi->h, bl->width, mpi->stride[0]); return VO_TRUE; }