Mercurial > mplayer.hg
changeset 36497:dabe5bcfc2e2
Fix video size < blinkenlights size again.
author | reimar |
---|---|
date | Sat, 18 Jan 2014 12:15:34 +0000 |
parents | cf65ac6b4842 |
children | 08051e43dfee |
files | libvo/vo_bl.c |
diffstat | 1 files changed, 1 insertions(+), 1 deletions(-) [+] |
line wrap: on
line diff
--- 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; }