[MPlayer-cvslog] r27475 - trunk/libvo/vo_fbdev.c
reimar
subversion at mplayerhq.hu
Fri Aug 22 19:26:16 CEST 2008
Author: reimar
Date: Fri Aug 22 19:26:16 2008
New Revision: 27475
Log:
-geometry support for -vo fbdev.
Patch by Sander (thrill12 gmx net)
Modified:
trunk/libvo/vo_fbdev.c
Modified: trunk/libvo/vo_fbdev.c
==============================================================================
--- trunk/libvo/vo_fbdev.c (original)
+++ trunk/libvo/vo_fbdev.c Fri Aug 22 19:26:16 2008
@@ -25,6 +25,7 @@
#include "video_out_internal.h"
#include "fastmemcpy.h"
#include "sub.h"
+#include "geometry.h"
#ifdef CONFIG_VIDIX
#include "vosub_vidix.h"
#endif
@@ -999,6 +1000,7 @@ static int config(uint32_t width, uint32
#endif
{
int x_offset=0,y_offset=0;
+ geometry(&x_offset, &y_offset, &out_width, &out_height, fb_xres, fb_yres);
if ((frame_buffer = (uint8_t *) mmap(0, fb_size, PROT_READ | PROT_WRITE,
MAP_SHARED, fb_dev_fd, 0)) == (uint8_t *) -1) {
mp_msg(MSGT_VO, MSGL_ERR, "Can't mmap %s: %s\n", fb_dev_name, strerror(errno));
More information about the MPlayer-cvslog
mailing list