[MPlayer-cvslog] r36593 - trunk/libvo/vo_bl.c

reimar subversion at mplayerhq.hu
Sat Jan 18 13:15:34 CET 2014


Author: reimar
Date: Sat Jan 18 13:15:34 2014
New Revision: 36593

Log:
Fix video size < blinkenlights size again.

Modified:
   trunk/libvo/vo_bl.c

Modified: trunk/libvo/vo_bl.c
==============================================================================
--- trunk/libvo/vo_bl.c	Sat Jan 18 12:59:59 2014	(r36592)
+++ trunk/libvo/vo_bl.c	Sat Jan 18 13:15:34 2014	(r36593)
@@ -326,7 +326,7 @@ static void check_events(void) {
 }
 
 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;
 }
 


More information about the MPlayer-cvslog mailing list