]> git.sesse.net Git - vlc/blob - modules/video_output/fb.c
Allowed a vout_display_t module to do the OSD/subtitles blending.
[vlc] / modules / video_output / fb.c
1 /*****************************************************************************
2  * fb.c : framebuffer plugin for vlc
3  *****************************************************************************
4  * Copyright (C) 2000-2009 the VideoLAN team
5  * $Id$
6  *
7  * Authors: Samuel Hocevar <sam@zoy.org>
8  *          Jean-Paul Saman
9  *
10  * This program is free software; you can redistribute it and/or modify
11  * it under the terms of the GNU General Public License as published by
12  * the Free Software Foundation; either version 2 of the License, or
13  * (at your option) any later version.
14  *
15  * This program is distributed in the hope that it will be useful,
16  * but WITHOUT ANY WARRANTY; without even the implied warranty of
17  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
18  * GNU General Public License for more details.
19  *
20  * You should have received a copy of the GNU General Public License
21  * along with this program; if not, write to the Free Software
22  * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston MA 02110-1301, USA.
23  *****************************************************************************/
24
25 /*****************************************************************************
26  * Preamble
27  *****************************************************************************/
28
29 #ifdef HAVE_CONFIG_H
30 # include "config.h"
31 #endif
32
33 #include <signal.h>                                      /* SIGUSR1, SIGUSR2 */
34 #include <fcntl.h>                                                 /* open() */
35 #include <unistd.h>                                               /* close() */
36
37 #include <termios.h>                                       /* struct termios */
38 #include <sys/ioctl.h>
39 #include <sys/mman.h>                                              /* mmap() */
40
41 #include <linux/fb.h>
42 #include <linux/vt.h>                                                /* VT_* */
43 #include <linux/kd.h>                                                 /* KD* */
44
45 #include <vlc_common.h>
46 #include <vlc_plugin.h>
47 #include <vlc_vout_display.h>
48 #include <vlc_picture_pool.h>
49 #include <vlc_fs.h>
50
51 /*****************************************************************************
52  * Module descriptor
53  *****************************************************************************/
54 #define FB_DEV_VAR "fbdev"
55
56 #define DEVICE_TEXT N_("Framebuffer device")
57 #define DEVICE_LONGTEXT N_(\
58     "Framebuffer device to use for rendering (usually /dev/fb0).")
59
60 #define TTY_TEXT N_("Run fb on current tty")
61 #define TTY_LONGTEXT N_(\
62     "Run framebuffer on current TTY device (default enabled). " \
63     "(disable tty handling with caution)")
64
65 #define FB_MODE_TEXT N_("Framebuffer resolution to use")
66 #define FB_MODE_LONGTEXT N_(\
67     "Select the resolution for the framebuffer. Currently it supports " \
68     "the values 0=QCIF 1=CIF 2=NTSC 3=PAL, 4=auto (default 4=auto)")
69
70 #define HW_ACCEL_TEXT N_("Framebuffer uses hw acceleration")
71 #define HW_ACCEL_LONGTEXT N_(\
72     "If your framebuffer supports hardware acceleration or does double buffering " \
73     "in hardware then you must disable this option. It then does double buffering " \
74     "in software.")
75
76 #define CHROMA_TEXT N_("Image format (default RGB)")
77 #define CHROMA_LONGTEXT N_("Chroma fourcc used by the framebuffer. Default is RGB since the fb device has no way to report its chroma.")
78
79 static int  Open (vlc_object_t *);
80 static void Close(vlc_object_t *);
81
82 vlc_module_begin ()
83     set_shortname("Framebuffer")
84     set_category(CAT_VIDEO)
85     set_subcategory(SUBCAT_VIDEO_VOUT)
86     add_loadfile(FB_DEV_VAR, "/dev/fb0", DEVICE_TEXT, DEVICE_LONGTEXT,
87                  false)
88     add_bool("fb-tty", true, TTY_TEXT, TTY_LONGTEXT, true)
89     add_string( "fb-chroma", NULL, CHROMA_TEXT, CHROMA_LONGTEXT, true )
90     add_obsolete_string("fb-aspect-ratio")
91     add_integer("fb-mode", 4, FB_MODE_TEXT, FB_MODE_LONGTEXT,
92                  true)
93     add_bool("fb-hw-accel", true, HW_ACCEL_TEXT, HW_ACCEL_LONGTEXT,
94               true)
95     set_description(N_("GNU/Linux framebuffer video output"))
96     set_capability("vout display", 30)
97     set_callbacks(Open, Close)
98 vlc_module_end ()
99
100 /*****************************************************************************
101  * Local prototypes
102  *****************************************************************************/
103 static picture_pool_t *Pool  (vout_display_t *, unsigned);
104 static void           Display(vout_display_t *, picture_t *, subpicture_t *);
105 static int            Control(vout_display_t *, int, va_list);
106 static void           Manage (vout_display_t *);
107
108 /* */
109 static int  OpenDisplay  (vout_display_t *, bool force_resolution);
110 static void CloseDisplay (vout_display_t *);
111 #if 0
112 static void SwitchDisplay(int i_signal);
113 #endif
114 static void TextMode     (int tty);
115 static void GfxMode      (int tty);
116
117 static int  TtyInit(vout_display_t *);
118 static void TtyExit(vout_display_t *);
119
120 /* */
121 struct vout_display_sys_t {
122     /* System information */
123     int                 tty;                          /* tty device handle */
124     bool                is_tty;
125     struct termios      old_termios;
126
127     /* Original configuration information */
128 #if 0
129     struct sigaction            sig_usr1;           /* USR1 previous handler */
130     struct sigaction            sig_usr2;           /* USR2 previous handler */
131 #endif
132     struct vt_mode              vt_mode;                 /* previous VT mode */
133
134     /* Framebuffer information */
135     int                         fd;                       /* device handle */
136     struct fb_var_screeninfo    old_info;       /* original mode information */
137     struct fb_var_screeninfo    var_info;        /* current mode information */
138     bool                        has_pan;   /* does device supports panning ? */
139     struct fb_cmap              fb_cmap;                /* original colormap */
140     uint16_t                    *palette;                /* original palette */
141     bool                        is_hw_accel;         /* has hardware support */
142
143     /* Video information */
144     uint32_t width;
145     uint32_t height;
146     uint32_t line_length;
147     vlc_fourcc_t chroma;
148     int      bytes_per_pixel;
149
150     /* Video memory */
151     uint8_t     *video_ptr;                                 /* base address */
152     size_t      video_size;                                    /* page size */
153
154     picture_t       *picture;
155     picture_pool_t  *pool;
156 };
157
158
159 static void ClearScreen(vout_display_sys_t *sys)
160 {
161     switch (sys->chroma) {
162     /* XXX: add other chromas */
163     case VLC_CODEC_UYVY: {
164         unsigned int j, size = sys->video_size / 4;
165         uint32_t *ptr = (uint32_t*)((uintptr_t)(sys->video_ptr + 3) & ~3);
166         for(j=0; j < size; j++)
167             ptr[j] = 0x10801080;    /* U = V = 16, Y = 128 */
168         break;
169     }
170     default:    /* RGB */
171         memset(sys->video_ptr, 0, sys->video_size);
172     }
173 }
174
175 /**
176  * This function allocates and initializes a FB vout method.
177  */
178 static int Open(vlc_object_t *object)
179 {
180     vout_display_t     *vd = (vout_display_t *)object;
181     vout_display_sys_t *sys;
182
183     /* Allocate instance and initialize some members */
184     vd->sys = sys = calloc(1, sizeof(*sys));
185     if (!sys)
186         return VLC_ENOMEM;
187
188     /* Does the framebuffer uses hw acceleration? */
189     sys->is_hw_accel = var_InheritBool(vd, "fb-hw-accel");
190
191     /* Set tty and fb devices */
192     sys->tty = 0; /* 0 == /dev/tty0 == current console */
193     sys->is_tty = var_InheritBool(vd, "fb-tty");
194 #if !defined(WIN32) &&  defined(HAVE_ISATTY)
195     /* Check that stdin is a TTY */
196     if (sys->is_tty && !isatty(0)) {
197         msg_Warn(vd, "standard input is not a TTY");
198         free(sys);
199         return VLC_EGENERIC;
200     }
201     msg_Warn(vd, "disabling TTY handling, use with caution because "
202                  "there is no way to return to the TTY");
203 #endif
204
205     const int mode = var_InheritInteger(vd, "fb-mode");
206     bool force_resolution = true;
207     switch (mode) {
208     case 0: /* QCIF */
209         sys->width  = 176;
210         sys->height = 144;
211         break;
212     case 1: /* CIF */
213         sys->width  = 352;
214         sys->height = 288;
215         break;
216     case 2: /* NTSC */
217         sys->width  = 640;
218         sys->height = 480;
219         break;
220     case 3: /* PAL */
221         sys->width  = 704;
222         sys->height = 576;
223         break;
224     case 4:
225     default:
226         force_resolution = false;
227         break;
228     }
229
230     char *chroma = var_InheritString(vd, "fb-chroma");
231     if (chroma) {
232         sys->chroma = vlc_fourcc_GetCodecFromString(VIDEO_ES, chroma);
233
234         if (sys->chroma)
235             msg_Dbg(vd, "forcing chroma '%s'", chroma);
236         else
237             msg_Warn(vd, "chroma %s invalid, using default", chroma);
238
239         free(chroma);
240     } else
241         sys->chroma = 0;
242
243     /* tty handling */
244     if (sys->is_tty && TtyInit(vd)) {
245         free(sys);
246         return VLC_EGENERIC;
247     }
248
249     /* */
250     sys->video_ptr = MAP_FAILED;
251     sys->picture = NULL;
252     sys->pool = NULL;
253
254     if (OpenDisplay(vd, force_resolution)) {
255         Close(VLC_OBJECT(vd));
256         return VLC_EGENERIC;
257     }
258     vout_display_DeleteWindow(vd, NULL);
259
260     /* */
261     video_format_t fmt = vd->fmt;
262
263     if (sys->chroma) {
264         fmt.i_chroma = sys->chroma;
265     } else {
266         /* Assume RGB */
267
268         msg_Dbg(vd, "%d bppd", sys->var_info.bits_per_pixel);
269         switch (sys->var_info.bits_per_pixel) {
270         case 8: /* FIXME: set the palette */
271             fmt.i_chroma = VLC_CODEC_RGB8;
272             break;
273         case 15:
274             fmt.i_chroma = VLC_CODEC_RGB15;
275             break;
276         case 16:
277             fmt.i_chroma = VLC_CODEC_RGB16;
278             break;
279         case 24:
280             fmt.i_chroma = VLC_CODEC_RGB24;
281             break;
282         case 32:
283             fmt.i_chroma = VLC_CODEC_RGB32;
284             break;
285         default:
286             msg_Err(vd, "unknown screendepth %i", sys->var_info.bits_per_pixel);
287             Close(VLC_OBJECT(vd));
288             return VLC_EGENERIC;
289         }
290         if (sys->var_info.bits_per_pixel != 8) {
291             fmt.i_rmask = ((1 << sys->var_info.red.length) - 1)
292                                  << sys->var_info.red.offset;
293             fmt.i_gmask = ((1 << sys->var_info.green.length) - 1)
294                                  << sys->var_info.green.offset;
295             fmt.i_bmask = ((1 << sys->var_info.blue.length) - 1)
296                                  << sys->var_info.blue.offset;
297         }
298     }
299
300     fmt.i_width  = sys->width;
301     fmt.i_height = sys->height;
302
303     /* */
304     vout_display_info_t info = vd->info;
305     info.has_hide_mouse = true;
306
307     /* */
308     vd->fmt     = fmt;
309     vd->info    = info;
310     vd->pool    = Pool;
311     vd->prepare = NULL;
312     vd->display = Display;
313     vd->control = Control;
314     vd->manage  = Manage;
315
316     /* */
317     vout_display_SendEventFullscreen(vd, true);
318     vout_display_SendEventDisplaySize(vd, fmt.i_width, fmt.i_height, true);
319     return VLC_SUCCESS;
320 }
321
322 /**
323  * Terminate an output method created by Open
324  */
325 static void Close(vlc_object_t *object)
326 {
327     vout_display_t *vd = (vout_display_t *)object;
328     vout_display_sys_t *sys = vd->sys;
329
330     if (sys->pool)
331         picture_pool_Delete(sys->pool);
332     if (!sys->is_hw_accel && sys->picture)
333         picture_Release(sys->picture);
334
335     CloseDisplay(vd);
336
337     if (sys->is_tty)
338         TtyExit(vd);
339
340     free(sys);
341 }
342
343 /* */
344 static picture_pool_t *Pool(vout_display_t *vd, unsigned count)
345 {
346     vout_display_sys_t *sys = vd->sys;
347
348     if (!sys->pool) {
349         if (!sys->picture) {
350             picture_resource_t rsc;
351
352             memset(&rsc, 0, sizeof(rsc));
353             rsc.p[0].p_pixels = sys->video_ptr;
354             rsc.p[0].i_lines  = sys->var_info.yres;
355             rsc.p[0].i_pitch = sys->line_length;
356
357             sys->picture = picture_NewFromResource(&vd->fmt, &rsc);
358             if (!sys->picture)
359                 return NULL;
360         }
361
362         if (sys->is_hw_accel)
363             sys->pool = picture_pool_New(1, &sys->picture);
364         else
365             sys->pool = picture_pool_NewFromFormat(&vd->fmt, count);
366     }
367     return sys->pool;
368 }
369 static void Display(vout_display_t *vd, picture_t *picture, subpicture_t *subpicture)
370 {
371     vout_display_sys_t *sys = vd->sys;
372
373     /* swap the two Y offsets if the drivers supports panning */
374     if (sys->has_pan) {
375         sys->var_info.yoffset = 0;
376         /*vd->sys->var_info.yoffset = vd->sys->var_info.yres; */
377
378         /* the X offset should be 0, but who knows ...
379          * some other app might have played with the framebuffer */
380         sys->var_info.xoffset = 0;
381
382         /* FIXME 'static' is damn wrong and it's dead code ... */
383         static int panned = 0;
384         if (panned < 0) {
385             ioctl(sys->fd, FBIOPAN_DISPLAY, &sys->var_info);
386             panned++;
387         }
388     }
389
390     if (!sys->is_hw_accel)
391         picture_Copy(sys->picture, picture);
392
393     picture_Release(picture);
394     VLC_UNUSED(subpicture);
395 }
396 static int Control(vout_display_t *vd, int query, va_list args)
397 {
398     vout_display_sys_t *sys = vd->sys;
399
400     switch (query) {
401     case VOUT_DISPLAY_CHANGE_DISPLAY_SIZE: {
402         const vout_display_cfg_t *cfg = va_arg(args, const vout_display_cfg_t *);
403         if (cfg->display.width  != sys->width ||
404             cfg->display.height != sys->height)
405             return VLC_EGENERIC;
406         return VLC_SUCCESS;
407     }
408     default:
409         msg_Err(vd, "Unsupported query in vout display fb");
410         return VLC_EGENERIC;
411     }
412 }
413 static void Manage (vout_display_t *vd)
414 {
415     VLC_UNUSED(vd);
416 #if 0
417     /*
418      * Size change
419      */
420     if (vd->i_changes & VOUT_SIZE_CHANGE)
421     {
422         msg_Dbg(vd, "reinitializing framebuffer screen");
423         vd->i_changes &= ~VOUT_SIZE_CHANGE;
424
425         vout_display_SendEventDisplaySize();
426
427         ClearScreen(vd->sys);
428     }
429 #endif
430 }
431
432 /* following functions are local */
433 static int TtyInit(vout_display_t *vd)
434 {
435     vout_display_sys_t *sys = vd->sys;
436
437     struct termios new_termios;
438
439     GfxMode(sys->tty);
440
441     /* Set keyboard settings */
442     if (tcgetattr(0, &sys->old_termios) == -1) {
443         msg_Err(vd, "tcgetattr failed");
444     }
445
446     if (tcgetattr(0, &new_termios) == -1) {
447         msg_Err(vd, "tcgetattr failed");
448     }
449
450     /* new_termios.c_lflag &= ~ (ICANON | ISIG);
451     new_termios.c_lflag |= (ECHO | ECHOCTL); */
452     new_termios.c_lflag &= ~ (ICANON);
453     new_termios.c_lflag &= ~(ECHO | ECHOCTL);
454     new_termios.c_iflag = 0;
455     new_termios.c_cc[VMIN] = 1;
456     new_termios.c_cc[VTIME] = 0;
457
458     if (tcsetattr(0, TCSAFLUSH, &new_termios) == -1) {
459         msg_Err(vd, "tcsetattr failed");
460     }
461
462     ioctl(sys->tty, VT_RELDISP, VT_ACKACQ);
463
464 #if 0
465     /* Set-up tty signal handler to be aware of tty changes */
466     struct sigaction sig_tty;
467     memset(&sig_tty, 0, sizeof(sig_tty));
468     sig_tty.sa_handler = SwitchDisplay;
469     sigemptyset(&sig_tty.sa_mask);
470     if (sigaction(SIGUSR1, &sig_tty, &sys->sig_usr1) ||
471         sigaction(SIGUSR2, &sig_tty, &sys->sig_usr2)) {
472         msg_Err(vd, "cannot set signal handler (%m)");
473         /* FIXME SIGUSR1 could have succeed */
474         goto error_signal;
475     }
476 #endif
477
478     /* Set-up tty according to new signal handler */
479     if (-1 == ioctl(sys->tty, VT_GETMODE, &sys->vt_mode)) {
480         msg_Err(vd, "cannot get terminal mode (%m)");
481         goto error;
482     }
483     struct vt_mode vt_mode = sys->vt_mode;
484     vt_mode.mode   = VT_PROCESS;
485     vt_mode.waitv  = 0;
486     vt_mode.relsig = SIGUSR1;
487     vt_mode.acqsig = SIGUSR2;
488
489     if (-1 == ioctl(sys->tty, VT_SETMODE, &vt_mode)) {
490         msg_Err(vd, "cannot set terminal mode (%m)");
491         goto error;
492     }
493     return VLC_SUCCESS;
494
495 error:
496 #if 0
497     sigaction(SIGUSR1, &sys->sig_usr1, NULL);
498     sigaction(SIGUSR2, &sys->sig_usr2, NULL);
499 error_signal:
500 #endif
501     tcsetattr(0, 0, &sys->old_termios);
502     TextMode(sys->tty);
503     return VLC_EGENERIC;
504 }
505 static void TtyExit(vout_display_t *vd)
506 {
507     vout_display_sys_t *sys = vd->sys;
508
509     /* Reset the terminal */
510     ioctl(sys->tty, VT_SETMODE, &sys->vt_mode);
511
512 #if 0
513     /* Remove signal handlers */
514     sigaction(SIGUSR1, &sys->sig_usr1, NULL);
515     sigaction(SIGUSR2, &sys->sig_usr2, NULL);
516 #endif
517
518     /* Reset the keyboard state */
519     tcsetattr(0, 0, &sys->old_termios);
520
521     /* Return to text mode */
522     TextMode(sys->tty);
523 }
524
525 /*****************************************************************************
526  * OpenDisplay: initialize framebuffer
527  *****************************************************************************/
528 static int OpenDisplay(vout_display_t *vd, bool force_resolution)
529 {
530     vout_display_sys_t *sys = vd->sys;
531     char *psz_device;                             /* framebuffer device path */
532
533     /* Open framebuffer device */
534     if (!(psz_device = var_InheritString(vd, FB_DEV_VAR))) {
535         msg_Err(vd, "don't know which fb device to open");
536         return VLC_EGENERIC;
537     }
538
539     sys->fd = vlc_open(psz_device, O_RDWR);
540     if (sys->fd == -1) {
541         msg_Err(vd, "cannot open %s (%m)", psz_device);
542         free(psz_device);
543         return VLC_EGENERIC;
544     }
545     free(psz_device);
546
547     /* Get framebuffer device information */
548     if (ioctl(sys->fd, FBIOGET_VSCREENINFO, &sys->var_info)) {
549         msg_Err(vd, "cannot get fb info (%m)");
550         close(sys->fd);
551         return VLC_EGENERIC;
552     }
553     sys->old_info = sys->var_info;
554
555     /* Get some info on the framebuffer itself */
556     if (force_resolution) {
557         sys->var_info.xres = sys->var_info.xres_virtual = sys->width;
558         sys->var_info.yres = sys->var_info.yres_virtual = sys->height;
559     }
560
561     /* Set some attributes */
562     sys->var_info.activate = sys->is_tty ? FB_ACTIVATE_NXTOPEN :
563                                            FB_ACTIVATE_NOW;
564     sys->var_info.xoffset  =  0;
565     sys->var_info.yoffset  =  0;
566
567     if (ioctl(sys->fd, FBIOPUT_VSCREENINFO, &sys->var_info)) {
568         msg_Err(vd, "cannot set fb info (%m)");
569         close(sys->fd);
570         return VLC_EGENERIC;
571     }
572
573     struct fb_fix_screeninfo fix_info;
574     /* Get some information again, in the definitive configuration */
575     if (ioctl(sys->fd, FBIOGET_FSCREENINFO, &fix_info) ||
576         ioctl(sys->fd, FBIOGET_VSCREENINFO, &sys->var_info)) {
577         msg_Err(vd, "cannot get additional fb info (%m)");
578
579         /* Restore fb config */
580         ioctl(sys->fd, FBIOPUT_VSCREENINFO, &sys->old_info);
581
582         close(sys->fd);
583         return VLC_EGENERIC;
584     }
585
586     /* If the fb has limitations on mode change,
587      * then keep the resolution of the fb */
588     if ((sys->height != sys->var_info.yres) ||
589         (sys->width != sys->var_info.xres)) {
590         msg_Warn(vd,
591                  "using framebuffer native resolution instead of requested (%ix%i)",
592                  sys->width, sys->height);
593     }
594     sys->height = sys->var_info.yres;
595     sys->width  = sys->var_info.xres_virtual ? sys->var_info.xres_virtual :
596                                                sys->var_info.xres;
597     sys->line_length = fix_info.line_length;
598
599     /* FIXME: if the image is full-size, it gets cropped on the left
600      * because of the xres / xres_virtual slight difference */
601     msg_Dbg(vd, "%ix%i (virtual %ix%i) (request %ix%i)",
602             sys->var_info.xres, sys->var_info.yres,
603             sys->var_info.xres_virtual,
604             sys->var_info.yres_virtual,
605             sys->width, sys->height);
606
607     sys->palette = NULL;
608     sys->has_pan = (fix_info.ypanstep || fix_info.ywrapstep);
609
610     switch (sys->var_info.bits_per_pixel) {
611     case 8:
612         sys->palette = malloc(8 * 256 * sizeof(uint16_t));
613         if (!sys->palette) {
614             /* Restore fb config */
615             ioctl(sys->fd, FBIOPUT_VSCREENINFO, &sys->old_info);
616
617             close(sys->fd);
618             return VLC_ENOMEM;
619         }
620         sys->fb_cmap.start = 0;
621         sys->fb_cmap.len = 256;
622         sys->fb_cmap.red = sys->palette;
623         sys->fb_cmap.green = sys->palette + 256 * sizeof(uint16_t);
624         sys->fb_cmap.blue = sys->palette + 2 * 256 * sizeof(uint16_t);
625         sys->fb_cmap.transp = sys->palette + 3 * 256 * sizeof(uint16_t);
626
627         /* Save the colormap */
628         ioctl(sys->fd, FBIOGETCMAP, &sys->fb_cmap);
629
630         sys->bytes_per_pixel = 1;
631         break;
632
633     case 15:
634     case 16:
635         sys->bytes_per_pixel = 2;
636         break;
637
638     case 24:
639         sys->bytes_per_pixel = 3;
640         break;
641
642     case 32:
643         sys->bytes_per_pixel = 4;
644         break;
645
646     default:
647         msg_Err(vd, "screen depth %d is not supported",
648                 sys->var_info.bits_per_pixel);
649
650         /* Restore fb config */
651         ioctl(sys->fd, FBIOPUT_VSCREENINFO, &sys->old_info);
652
653         close(sys->fd);
654         return VLC_EGENERIC;
655     }
656
657     sys->video_size = sys->line_length * sys->var_info.yres_virtual;
658
659     /* Map a framebuffer at the beginning */
660     sys->video_ptr = mmap(NULL, sys->video_size,
661                           PROT_READ | PROT_WRITE, MAP_SHARED, sys->fd, 0);
662
663     if (sys->video_ptr == MAP_FAILED) {
664         msg_Err(vd, "cannot map video memory (%m)");
665
666         if (sys->var_info.bits_per_pixel == 8) {
667             free(sys->palette);
668             sys->palette = NULL;
669         }
670
671         /* Restore fb config */
672         ioctl(sys->fd, FBIOPUT_VSCREENINFO, &sys->old_info);
673
674         close(sys->fd);
675         return VLC_EGENERIC;
676     }
677
678     ClearScreen(sys);
679
680     msg_Dbg(vd,
681             "framebuffer type=%d, visual=%d, ypanstep=%d, ywrap=%d, accel=%d",
682             fix_info.type, fix_info.visual,
683             fix_info.ypanstep, fix_info.ywrapstep, fix_info.accel);
684     return VLC_SUCCESS;
685 }
686
687 /*****************************************************************************
688  * CloseDisplay: terminate FB video thread output method
689  *****************************************************************************/
690 static void CloseDisplay(vout_display_t *vd)
691 {
692     vout_display_sys_t *sys = vd->sys;
693
694     if (sys->video_ptr != MAP_FAILED) {
695         ClearScreen(sys);
696         munmap(sys->video_ptr, sys->video_size);
697     }
698
699     if (sys->fd >= 0) {
700         /* Restore palette */
701         if (sys->var_info.bits_per_pixel == 8) {
702             ioctl(sys->fd, FBIOPUTCMAP, &sys->fb_cmap);
703             free(sys->palette);
704             sys->palette = NULL;
705         }
706
707         /* Restore fb config */
708         ioctl(sys->fd, FBIOPUT_VSCREENINFO, &sys->old_info);
709
710         /* Close fb */
711         close(sys->fd);
712     }
713 }
714
715 #if 0
716 /*****************************************************************************
717  * SwitchDisplay: VT change signal handler
718  *****************************************************************************
719  * This function activates or deactivates the output of the thread. It is
720  * called by the VT driver, on terminal change.
721  *****************************************************************************/
722 static void SwitchDisplay(int i_signal)
723 {
724     vout_display_t *vd;
725
726     vlc_mutex_lock(&p_vout_bank->lock);
727
728     /* XXX: only test the first video output */
729     if (p_vout_bank->i_count)
730     {
731         vd = p_vout_bank->pp_vout[0];
732
733         switch (i_signal)
734         {
735         case SIGUSR1:                                /* vt has been released */
736             vd->b_active = 0;
737             ioctl(sys->tty, VT_RELDISP, 1);
738             break;
739         case SIGUSR2:                                /* vt has been acquired */
740             vd->b_active = 1;
741             ioctl(sys->tty, VT_RELDISP, VT_ACTIVATE);
742             /* handle blanking */
743             vlc_mutex_lock(&vd->change_lock);
744             vd->i_changes |= VOUT_SIZE_CHANGE;
745             vlc_mutex_unlock(&vd->change_lock);
746             break;
747         }
748     }
749
750     vlc_mutex_unlock(&p_vout_bank->lock);
751 }
752 #endif
753
754 /*****************************************************************************
755  * TextMode and GfxMode : switch tty to text/graphic mode
756  *****************************************************************************
757  * These functions toggle the tty mode.
758  *****************************************************************************/
759 static void TextMode(int tty)
760 {
761     /* return to text mode */
762     if (-1 == ioctl(tty, KDSETMODE, KD_TEXT)) {
763         /*msg_Err(vd, "failed ioctl KDSETMODE KD_TEXT");*/
764     }
765 }
766
767 static void GfxMode(int tty)
768 {
769     /* switch to graphic mode */
770     if (-1 == ioctl(tty, KDSETMODE, KD_GRAPHICS)) {
771         /*msg_Err(vd, "failed ioctl KDSETMODE KD_GRAPHICS");*/
772     }
773 }