[MPlayer-cvslog] r35211 - trunk/libvo/vo_fbdev.c

reimar subversion at mplayerhq.hu
Sat Sep 22 23:36:27 CEST 2012


Author: reimar
Date: Sat Sep 22 23:36:27 2012
New Revision: 35211

Log:
More helpful error message when video does not fit into frame buffer.

Modified:
   trunk/libvo/vo_fbdev.c

Modified: trunk/libvo/vo_fbdev.c
==============================================================================
--- trunk/libvo/vo_fbdev.c	Sat Sep 22 21:14:01 2012	(r35210)
+++ trunk/libvo/vo_fbdev.c	Sat Sep 22 23:36:27 2012	(r35211)
@@ -862,7 +862,8 @@ static int config(uint32_t width, uint32
         out_height = fb_yres;
     }
     if (out_width < in_width || out_height < in_height) {
-        mp_msg(MSGT_VO, MSGL_ERR, "screensize is smaller than video size\n");
+        mp_msg(MSGT_VO, MSGL_ERR, "screensize %ix%i is smaller than video size %ix%i\n",
+               out_width, out_height, in_width, in_height);
         return 1;
     }
 


More information about the MPlayer-cvslog mailing list