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