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