]> git.sesse.net Git - vlc/blob - modules/video_output/fb.c
Fix previous commit.
[vlc] / modules / video_output / fb.c
1 /*****************************************************************************
2  * fb.c : framebuffer plugin for vlc
3  *****************************************************************************
4  * Copyright (C) 2000, 2001 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 <errno.h>                                                 /* ENOMEM */
34 #include <signal.h>                                      /* SIGUSR1, SIGUSR2 */
35 #include <fcntl.h>                                                 /* open() */
36 #include <unistd.h>                                               /* close() */
37
38 #include <termios.h>                                       /* struct termios */
39 #include <sys/ioctl.h>
40 #include <sys/mman.h>                                              /* mmap() */
41
42 #include <linux/fb.h>
43 #include <linux/vt.h>                                                /* VT_* */
44 #include <linux/kd.h>                                                 /* KD* */
45
46 #include <vlc_common.h>
47 #include <vlc_plugin.h>
48 #include <vlc_vout.h>
49
50 /*****************************************************************************
51  * Local prototypes
52  *****************************************************************************/
53 static int  Create    ( vlc_object_t * );
54 static void Destroy   ( vlc_object_t * );
55
56 static int  Init      ( vout_thread_t * );
57 static void End       ( vout_thread_t * );
58 static int  Manage    ( vout_thread_t * );
59 static void Display   ( vout_thread_t *, picture_t * );
60 static int  Control   ( vout_thread_t *, int, va_list );
61
62 static int  NewPicture     ( vout_thread_t *, picture_t * );
63 static void FreePicture    ( vout_thread_t *, picture_t * );
64
65 static int  OpenDisplay    ( vout_thread_t * );
66 static void CloseDisplay   ( vout_thread_t * );
67 static void SwitchDisplay  ( int i_signal );
68 static void TextMode       ( int i_tty );
69 static void GfxMode        ( int i_tty );
70
71 #define MAX_DIRECTBUFFERS 1
72
73 /*****************************************************************************
74  * Module descriptor
75  *****************************************************************************/
76 #define FB_DEV_VAR "fbdev"
77
78 #define DEVICE_TEXT N_("Framebuffer device")
79 #define DEVICE_LONGTEXT N_( \
80     "Framebuffer device to use for rendering (usually /dev/fb0).")
81
82 #define TTY_TEXT N_("Run fb on current tty.")
83 #define TTY_LONGTEXT N_( \
84     "Run framebuffer on current TTY device (default enabled). " \
85     "(disable tty handling with caution)" )
86
87 #define CHROMA_TEXT N_("Chroma used.")
88 #define CHROMA_LONGTEXT N_( \
89     "Force use of a specific chroma for output. Default is I420." )
90
91 #define ASPECT_RATIO_TEXT N_("Video aspect ratio")
92 #define ASPECT_RATIO_LONGTEXT N_( \
93     "Aspect ratio of the video image (4:3, 16:9). Default is square pixels." )
94
95 #define FB_MODE_TEXT N_("Framebuffer resolution to use.")
96 #define FB_MODE_LONGTEXT N_( \
97     "Select the resolution for the framebuffer. Currently it supports " \
98     "the values 0=QCIF 1=CIF 2=NTSC 3=PAL, 4=auto (default 4=auto)" )
99
100 #define HW_ACCEL_TEXT N_("Framebuffer uses hw acceleration.")
101 #define HW_ACCEL_LONGTEXT N_( \
102     "If your framebuffer supports hardware acceleration or does double buffering " \
103     "in hardware then you must disable this option. It then does double buffering " \
104     "in software." )
105
106 vlc_module_begin();
107     set_shortname( "Framebuffer" );
108     set_category( CAT_VIDEO );
109     set_subcategory( SUBCAT_VIDEO_VOUT );
110     add_file( FB_DEV_VAR, "/dev/fb0", NULL, DEVICE_TEXT, DEVICE_LONGTEXT,
111               false );
112     add_bool( "fb-tty", 1, NULL, TTY_TEXT, TTY_LONGTEXT, true );
113     add_string( "fb-chroma", NULL, NULL, CHROMA_TEXT, CHROMA_LONGTEXT,
114                 true );
115     add_string( "fb-aspect-ratio", NULL, NULL, ASPECT_RATIO_TEXT,
116                 ASPECT_RATIO_LONGTEXT, true );
117     add_integer( "fb-mode", 4, NULL, FB_MODE_TEXT, FB_MODE_LONGTEXT,
118                  true );
119     add_bool( "fb-hw-accel", true, NULL, HW_ACCEL_TEXT, HW_ACCEL_LONGTEXT,
120               true );
121     set_description( N_("GNU/Linux console framebuffer video output") );
122     set_capability( "video output", 30 );
123     set_callbacks( Create, Destroy );
124 vlc_module_end();
125
126 /*****************************************************************************
127  * vout_sys_t: video output framebuffer method descriptor
128  *****************************************************************************
129  * This structure is part of the video output thread descriptor.
130  * It describes the FB specific properties of an output thread.
131  *****************************************************************************/
132 struct vout_sys_t
133 {
134     /* System information */
135     int                 i_tty;                          /* tty device handle */
136     bool                b_tty;
137     struct termios      old_termios;
138
139     /* Original configuration information */
140     struct sigaction            sig_usr1;           /* USR1 previous handler */
141     struct sigaction            sig_usr2;           /* USR2 previous handler */
142     struct vt_mode              vt_mode;                 /* previous VT mode */
143
144     /* Framebuffer information */
145     int                         i_fd;                       /* device handle */
146     struct fb_var_screeninfo    old_info;       /* original mode information */
147     struct fb_var_screeninfo    var_info;        /* current mode information */
148     bool                        b_pan;     /* does device supports panning ? */
149     struct fb_cmap              fb_cmap;                /* original colormap */
150     uint16_t                    *p_palette;              /* original palette */
151     bool                        b_hw_accel;          /* has hardware support */
152
153     /* Video information */
154     uint32_t i_width;
155     uint32_t i_height;
156     int      i_aspect;
157     int      i_bytes_per_pixel;
158     bool     b_auto;       /* Automatically adjust video size to fb size */
159     vlc_fourcc_t i_chroma;
160
161     /* Video memory */
162     uint8_t    *p_video;                                      /* base adress */
163     size_t      i_page_size;                                    /* page size */
164 };
165
166 struct picture_sys_t
167 {
168     uint8_t *    p_data;                                      /* base adress */
169 };
170
171 /*****************************************************************************
172  * Create: allocates FB video thread output method
173  *****************************************************************************
174  * This function allocates and initializes a FB vout method.
175  *****************************************************************************/
176 static int Create( vlc_object_t *p_this )
177 {
178     vout_thread_t *p_vout = (vout_thread_t *)p_this;
179     vout_sys_t    *p_sys;
180     char          *psz_chroma;
181     char          *psz_aspect;
182     int           i_mode;
183     struct sigaction    sig_tty;                 /* sigaction for tty change */
184     struct vt_mode      vt_mode;                          /* vt current mode */
185     struct termios      new_termios;
186
187     /* Allocate instance and initialize some members */
188     p_vout->p_sys = p_sys = malloc( sizeof( vout_sys_t ) );
189     if( p_vout->p_sys == NULL )
190         return VLC_ENOMEM;
191     memset( p_sys, 0, sizeof(vout_sys_t) );
192
193     p_vout->pf_init = Init;
194     p_vout->pf_end = End;
195     p_vout->pf_manage = Manage;
196     p_vout->pf_render = NULL;
197     p_vout->pf_display = Display;
198     p_vout->pf_control = Control;
199
200     /* Does the framebuffer uses hw acceleration? */
201     p_sys->b_hw_accel = var_CreateGetBool( p_vout, "fb-hw-accel" );
202
203     /* Set tty and fb devices */
204     p_sys->i_tty = 0; /* 0 == /dev/tty0 == current console */
205     p_sys->b_tty = var_CreateGetBool( p_vout, "fb-tty" );
206 #ifndef WIN32
207 #if defined(HAVE_ISATTY)
208     /* Check that stdin is a TTY */
209     if( p_sys->b_tty && !isatty( 0 ) )
210     {
211         msg_Warn( p_vout, "fd 0 is not a TTY" );
212         return VLC_EGENERIC;
213     }
214     else
215     {
216         msg_Warn( p_vout, "disabling tty handling, use with caution because "
217                           "there is no way to return to the tty." );
218     }
219 #endif
220 #endif
221
222     psz_chroma = var_CreateGetNonEmptyString( p_vout, "fb-chroma" );
223     if( psz_chroma )
224     {
225         if( strlen( psz_chroma ) == 4 )
226         {
227             p_sys->i_chroma = VLC_FOURCC( psz_chroma[0],
228                                    psz_chroma[1],
229                                    psz_chroma[2],
230                                    psz_chroma[3] );
231             msg_Dbg( p_vout, "forcing chroma '%s'", psz_chroma );
232         }
233         else
234         {
235             msg_Warn( p_vout, "invalid chroma (%s), using defaults.",
236                       psz_chroma );
237         }
238         free( psz_chroma );
239         psz_chroma = NULL;
240     }
241
242     p_sys->i_aspect = -1;
243     psz_aspect = var_CreateGetNonEmptyString( p_vout, "fb-aspect-ratio" );
244     if( psz_aspect )
245     {
246         char *psz_parser = strchr( psz_aspect, ':' );
247
248         if( psz_parser )
249         {
250             *psz_parser++ = '\0';
251             p_sys->i_aspect = ( atoi( psz_aspect )
252                               * VOUT_ASPECT_FACTOR ) / atoi( psz_parser );
253         }
254         msg_Dbg( p_vout, "using aspect ratio %d:%d",
255                   atoi( psz_aspect ), atoi( psz_parser ) );
256
257         free( psz_aspect );
258         psz_aspect = NULL;
259     }
260
261     p_sys->b_auto = false;
262     i_mode = var_CreateGetInteger( p_vout, "fb-mode" );
263     switch( i_mode )
264     {
265         case 0: /* QCIF */
266             p_sys->i_width  = 176;
267             p_sys->i_height = 144;
268             break;
269         case 1: /* CIF */
270             p_sys->i_width  = 352;
271             p_sys->i_height = 288;
272             break;
273         case 2: /* NTSC */
274             p_sys->i_width  = 640;
275             p_sys->i_height = 480;
276             break;
277         case 3: /* PAL */
278             p_sys->i_width  = 704;
279             p_sys->i_height = 576;
280             break;
281         case 4:
282         default:
283             p_sys->b_auto = true;
284             break;
285      }
286
287     /* tty handling */
288     if( p_sys->b_tty )
289     {
290         GfxMode( p_sys->i_tty );
291
292         /* Set keyboard settings */
293         if( tcgetattr(0, &p_vout->p_sys->old_termios) == -1 )
294         {
295             msg_Err( p_vout, "tcgetattr failed" );
296         }
297
298         if( tcgetattr(0, &new_termios) == -1 )
299         {
300             msg_Err( p_vout, "tcgetattr failed" );
301         }
302
303         /* new_termios.c_lflag &= ~ (ICANON | ISIG);
304         new_termios.c_lflag |= (ECHO | ECHOCTL); */
305         new_termios.c_lflag &= ~ (ICANON);
306         new_termios.c_lflag &= ~(ECHO | ECHOCTL);
307         new_termios.c_iflag = 0;
308         new_termios.c_cc[VMIN] = 1;
309         new_termios.c_cc[VTIME] = 0;
310
311         if( tcsetattr(0, TCSAFLUSH, &new_termios) == -1 )
312         {
313             msg_Err( p_vout, "tcsetattr failed" );
314         }
315
316         ioctl( p_sys->i_tty, VT_RELDISP, VT_ACKACQ );
317
318         /* Set-up tty signal handler to be aware of tty changes */
319         memset( &sig_tty, 0, sizeof( sig_tty ) );
320         sig_tty.sa_handler = SwitchDisplay;
321         sigemptyset( &sig_tty.sa_mask );
322         if( sigaction( SIGUSR1, &sig_tty, &p_vout->p_sys->sig_usr1 ) ||
323             sigaction( SIGUSR2, &sig_tty, &p_vout->p_sys->sig_usr2 ) )
324         {
325             msg_Err( p_vout, "cannot set signal handler (%m)" );
326             tcsetattr(0, 0, &p_vout->p_sys->old_termios);
327             TextMode( p_sys->i_tty );
328             free( p_vout->p_sys );
329             return VLC_EGENERIC;
330         }
331
332         /* Set-up tty according to new signal handler */
333         if( -1 == ioctl( p_sys->i_tty, VT_GETMODE, &p_vout->p_sys->vt_mode ) )
334         {
335             msg_Err( p_vout, "cannot get terminal mode (%m)" );
336             sigaction( SIGUSR1, &p_vout->p_sys->sig_usr1, NULL );
337             sigaction( SIGUSR2, &p_vout->p_sys->sig_usr2, NULL );
338             tcsetattr(0, 0, &p_vout->p_sys->old_termios);
339             TextMode( p_sys->i_tty );
340             free( p_vout->p_sys );
341             return VLC_EGENERIC;
342         }
343         memcpy( &vt_mode, &p_vout->p_sys->vt_mode, sizeof( vt_mode ) );
344         vt_mode.mode   = VT_PROCESS;
345         vt_mode.waitv  = 0;
346         vt_mode.relsig = SIGUSR1;
347         vt_mode.acqsig = SIGUSR2;
348
349         if( -1 == ioctl( p_sys->i_tty, VT_SETMODE, &vt_mode ) )
350         {
351             msg_Err( p_vout, "cannot set terminal mode (%m)" );
352             sigaction( SIGUSR1, &p_vout->p_sys->sig_usr1, NULL );
353             sigaction( SIGUSR2, &p_vout->p_sys->sig_usr2, NULL );
354             tcsetattr(0, 0, &p_vout->p_sys->old_termios);
355             TextMode( p_sys->i_tty );
356             free( p_vout->p_sys );
357             return VLC_EGENERIC;
358         }
359     }
360
361     if( OpenDisplay( p_vout ) )
362     {
363         if( p_sys->b_tty )
364         {
365             ioctl( p_sys->i_tty, VT_SETMODE, &p_vout->p_sys->vt_mode );
366             sigaction( SIGUSR1, &p_vout->p_sys->sig_usr1, NULL );
367             sigaction( SIGUSR2, &p_vout->p_sys->sig_usr2, NULL );
368             tcsetattr(0, 0, &p_vout->p_sys->old_termios);
369             TextMode( p_sys->i_tty );
370         }
371         free( p_vout->p_sys );
372         return VLC_EGENERIC;
373     }
374
375     return VLC_SUCCESS;
376 }
377
378
379 /*****************************************************************************
380  * Destroy: destroy FB video thread output method
381  *****************************************************************************
382  * Terminate an output method created by Create
383  *****************************************************************************/
384 static void Destroy( vlc_object_t *p_this )
385 {
386     vout_thread_t *p_vout = (vout_thread_t *)p_this;
387
388     CloseDisplay( p_vout );
389
390     if( p_vout->p_sys->b_tty )
391     {
392         /* Reset the terminal */
393         ioctl( p_vout->p_sys->i_tty, VT_SETMODE, &p_vout->p_sys->vt_mode );
394
395         /* Remove signal handlers */
396         sigaction( SIGUSR1, &p_vout->p_sys->sig_usr1, NULL );
397         sigaction( SIGUSR2, &p_vout->p_sys->sig_usr2, NULL );
398
399         /* Reset the keyboard state */
400         tcsetattr( 0, 0, &p_vout->p_sys->old_termios );
401
402         /* Return to text mode */
403         TextMode( p_vout->p_sys->i_tty );
404     }
405
406     /* Destroy structure */
407     free( p_vout->p_sys );
408 }
409
410 /*****************************************************************************
411  * NewPicture: allocate a picture
412  *****************************************************************************
413  * Returns 0 on success, -1 otherwise
414  *****************************************************************************/
415 static int NewPicture( vout_thread_t *p_vout, picture_t *p_pic )
416 {
417     /* We know the chroma, allocate a buffer which will be used
418      * directly by the decoder */
419     p_pic->p_sys = malloc( sizeof( picture_sys_t ) );
420     if( p_pic->p_sys == NULL )
421     {
422         return VLC_ENOMEM;
423     }
424
425     /* Fill in picture_t fields */
426     vout_InitPicture( VLC_OBJECT(p_vout), p_pic, p_vout->output.i_chroma,
427                       p_vout->output.i_width, p_vout->output.i_height,
428                       p_vout->output.i_aspect );
429
430     p_pic->p_sys->p_data = malloc( p_vout->p_sys->i_page_size );
431     if( !p_pic->p_sys->p_data )
432     {
433         free( p_pic->p_sys );
434         p_pic->p_sys = NULL;
435         return VLC_ENOMEM;
436     }
437
438     p_pic->p->p_pixels = (uint8_t*) p_pic->p_sys->p_data;
439
440     p_pic->p->i_pixel_pitch = p_vout->p_sys->i_bytes_per_pixel;
441     p_pic->p->i_lines = p_vout->p_sys->var_info.yres;
442     p_pic->p->i_visible_lines = p_vout->p_sys->var_info.yres;
443
444     if( p_vout->p_sys->var_info.xres_virtual )
445     {
446         p_pic->p->i_pitch = p_vout->p_sys->var_info.xres_virtual
447                              * p_vout->p_sys->i_bytes_per_pixel;
448     }
449     else
450     {
451         p_pic->p->i_pitch = p_vout->p_sys->var_info.xres
452                              * p_vout->p_sys->i_bytes_per_pixel;
453     }
454
455     p_pic->p->i_visible_pitch = p_vout->p_sys->var_info.xres
456                                  * p_vout->p_sys->i_bytes_per_pixel;
457     p_pic->i_planes = 1;
458
459     return VLC_SUCCESS;
460 }
461
462 /*****************************************************************************
463  * FreePicture: destroy a picture allocated with NewPicture
464  *****************************************************************************
465  * Destroy Image AND associated data.
466  *****************************************************************************/
467 static void FreePicture( vout_thread_t *p_vout, picture_t *p_pic )
468 {
469     free( p_pic->p_sys->p_data );
470     free( p_pic->p_sys );
471     p_pic->p_sys = NULL;
472 }
473
474 /*****************************************************************************
475  * Init: initialize framebuffer video thread output method
476  *****************************************************************************/
477 static int Init( vout_thread_t *p_vout )
478 {
479     vout_sys_t *p_sys = p_vout->p_sys;
480     int i_index;
481     picture_t *p_pic = NULL;
482
483     I_OUTPUTPICTURES = 0;
484
485     p_vout->output.i_width  = p_vout->render.i_width;
486     p_vout->output.i_height = p_vout->render.i_height;
487     p_vout->output.i_aspect = p_vout->render.i_aspect;
488
489     p_vout->fmt_out = p_vout->fmt_in;
490     if( p_sys->i_chroma == 0 )
491     {
492         /* Initialize the output structure: RGB with square pixels, whatever
493          * the input format is, since it's the only format we know */
494         switch( p_sys->var_info.bits_per_pixel )
495         {
496         case 8: /* FIXME: set the palette */
497             p_vout->output.i_chroma = VLC_FOURCC('R','G','B','2'); break;
498         case 15:
499             p_vout->output.i_chroma = VLC_FOURCC('R','V','1','5'); break;
500         case 16:
501             p_vout->output.i_chroma = VLC_FOURCC('R','V','1','6'); break;
502         case 24:
503             p_vout->output.i_chroma = VLC_FOURCC('R','V','2','4'); break;
504         case 32:
505             p_vout->output.i_chroma = VLC_FOURCC('R','V','3','2'); break;
506         default:
507             msg_Err( p_vout, "unknown screen depth %i",
508                      p_vout->p_sys->var_info.bits_per_pixel );
509             return VLC_EGENERIC;
510         }
511
512         if( p_sys->var_info.bits_per_pixel != 8 )
513         {
514             p_vout->output.i_rmask = ( (1 << p_sys->var_info.red.length) - 1 )
515                                  << p_sys->var_info.red.offset;
516             p_vout->output.i_gmask = ( (1 << p_sys->var_info.green.length) - 1 )
517                                  << p_sys->var_info.green.offset;
518             p_vout->output.i_bmask = ( (1 << p_sys->var_info.blue.length) - 1 )
519                                  << p_sys->var_info.blue.offset;
520         }
521     }
522     else
523     {
524         p_vout->output.i_chroma = p_sys->i_chroma;
525     }
526     p_vout->fmt_out.i_chroma = p_vout->output.i_chroma;
527
528     p_vout->output.i_width =
529     p_vout->fmt_out.i_width =
530     p_vout->fmt_out.i_visible_width = p_sys->i_width;
531     p_vout->output.i_height =
532     p_vout->fmt_out.i_height =
533     p_vout->fmt_out.i_visible_height = p_sys->i_height;
534
535     /* Assume we have square pixels */
536     if( p_sys->i_aspect < 0 )
537     {
538         p_vout->output.i_aspect = ( p_sys->i_width
539                                   * VOUT_ASPECT_FACTOR ) / p_sys->i_height;
540     }
541     else p_vout->output.i_aspect = p_sys->i_aspect;
542
543     p_vout->fmt_out.i_sar_num = p_vout->fmt_out.i_sar_den = 1;
544     p_vout->fmt_out.i_aspect  = p_vout->render.i_aspect = p_vout->output.i_aspect;
545     p_vout->fmt_out.i_x_offset= p_vout->fmt_out.i_y_offset = 0;
546
547     /* Clear the screen */
548     memset( p_sys->p_video, 0, p_sys->i_page_size );
549
550     if( !p_sys->b_hw_accel )
551     {
552         /* Try to initialize up to MAX_DIRECTBUFFERS direct buffers */
553         while( I_OUTPUTPICTURES < MAX_DIRECTBUFFERS )
554         {
555             p_pic = NULL;
556
557             /* Find an empty picture slot */
558             for( i_index = 0 ; i_index < VOUT_MAX_PICTURES ; i_index++ )
559             {
560             if( p_vout->p_picture[ i_index ].i_status == FREE_PICTURE )
561                 {
562                     p_pic = p_vout->p_picture + i_index;
563                     break;
564                 }
565             }
566
567             /* Allocate the picture */
568             if( p_pic == NULL || NewPicture( p_vout, p_pic ) )
569             {
570                 break;
571             }
572
573             p_pic->i_status = DESTROYED_PICTURE;
574             p_pic->i_type   = DIRECT_PICTURE;
575
576             PP_OUTPUTPICTURE[ I_OUTPUTPICTURES ] = p_pic;
577
578             I_OUTPUTPICTURES++;
579         }
580     }
581     else
582     {
583         /* Try to initialize 1 direct buffer */
584         p_pic = NULL;
585
586         /* Find an empty picture slot */
587         for( i_index = 0 ; i_index < VOUT_MAX_PICTURES ; i_index++ )
588         {
589             if( p_vout->p_picture[ i_index ].i_status == FREE_PICTURE )
590             {
591                 p_pic = p_vout->p_picture + i_index;
592                 break;
593             }
594         }
595
596         /* Allocate the picture */
597         if( p_pic == NULL )
598         {
599             return VLC_EGENERIC;
600         }
601
602         /* We know the chroma, allocate a buffer which will be used
603         * directly by the decoder */
604         p_pic->p->p_pixels = p_vout->p_sys->p_video;
605         p_pic->p->i_pixel_pitch = p_vout->p_sys->i_bytes_per_pixel;
606         p_pic->p->i_lines = p_vout->p_sys->var_info.yres;
607         p_pic->p->i_visible_lines = p_vout->p_sys->var_info.yres;
608
609         if( p_vout->p_sys->var_info.xres_virtual )
610         {
611             p_pic->p->i_pitch = p_vout->p_sys->var_info.xres_virtual
612                                 * p_vout->p_sys->i_bytes_per_pixel;
613         }
614         else
615         {
616             p_pic->p->i_pitch = p_vout->p_sys->var_info.xres
617                                 * p_vout->p_sys->i_bytes_per_pixel;
618         }
619
620         p_pic->p->i_visible_pitch = p_vout->p_sys->var_info.xres
621                                     * p_vout->p_sys->i_bytes_per_pixel;
622         p_pic->i_planes = 1;
623         p_pic->i_status = DESTROYED_PICTURE;
624         p_pic->i_type   = DIRECT_PICTURE;
625
626         PP_OUTPUTPICTURE[ I_OUTPUTPICTURES ] = p_pic;
627
628         I_OUTPUTPICTURES++;
629     }
630
631     return VLC_SUCCESS;
632 }
633
634 /*****************************************************************************
635  * End: terminate framebuffer video thread output method
636  *****************************************************************************/
637 static void End( vout_thread_t *p_vout )
638 {
639     if( !p_vout->p_sys->b_hw_accel )
640     {
641         int i_index;
642
643         /* Free the direct buffers we allocated */
644         for( i_index = I_OUTPUTPICTURES ; i_index ; )
645         {
646             i_index--;
647             FreePicture( p_vout, PP_OUTPUTPICTURE[ i_index ] );
648         }
649
650     }
651     /* Clear the screen */
652     memset( p_vout->p_sys->p_video, 0, p_vout->p_sys->i_page_size );
653 }
654
655 /*****************************************************************************
656  * Control: control facility for the vout
657  *****************************************************************************/
658 static int Control( vout_thread_t *p_vout, int i_query, va_list args )
659 {
660     switch( i_query )
661     {
662        default:
663             return vout_vaControlDefault( p_vout, i_query, args );
664     }
665 }
666
667 /*****************************************************************************
668  * Manage: handle FB events
669  *****************************************************************************
670  * This function should be called regularly by video output thread. It manages
671  * console events. It returns a non null value on error.
672  *****************************************************************************/
673 static int Manage( vout_thread_t *p_vout )
674 {
675 #if 0
676     uint8_t buf;
677
678     if ( read(0, &buf, 1) == 1)
679     {
680         switch( buf )
681         {
682         case 'q':
683             vlc_object_kill( p_vout->p_libvlc );
684             break;
685
686         default:
687             break;
688         }
689     }
690 #endif
691
692     /*
693      * Size change
694      */
695     if( p_vout->i_changes & VOUT_SIZE_CHANGE )
696     {
697         msg_Dbg( p_vout, "reinitializing framebuffer screen" );
698         p_vout->i_changes &= ~VOUT_SIZE_CHANGE;
699
700         /* Destroy XImages to change their size */
701         End( p_vout );
702
703         /* Recreate XImages. If SysInit failed, the thread can't go on. */
704         if( Init( p_vout ) )
705         {
706             msg_Err( p_vout, "cannot reinit framebuffer screen" );
707             return VLC_EGENERIC;
708         }
709
710         /* Clear screen */
711         memset( p_vout->p_sys->p_video, 0, p_vout->p_sys->i_page_size );
712
713 #if 0
714         /* Tell the video output thread that it will need to rebuild YUV
715          * tables. This is needed since conversion buffer size may have changed */
716         p_vout->i_changes |= VOUT_YUV_CHANGE;
717 #endif
718     }
719
720     return VLC_SUCCESS;
721 }
722
723 /*****************************************************************************
724  * Display: displays previously rendered output
725  *****************************************************************************
726  * This function send the currently rendered image to FB image, waits until
727  * it is displayed and switch the two rendering buffers, preparing next frame.
728  *****************************************************************************/
729 static void Display( vout_thread_t *p_vout, picture_t *p_pic )
730 {
731 static int panned=0;
732     /* swap the two Y offsets if the drivers supports panning */
733     if( p_vout->p_sys->b_pan )
734     {
735         p_vout->p_sys->var_info.yoffset = 0;
736         /*p_vout->p_sys->var_info.yoffset = p_vout->p_sys->var_info.yres; */
737
738         /* the X offset should be 0, but who knows ...
739          * some other app might have played with the framebuffer */
740         p_vout->p_sys->var_info.xoffset = 0;
741
742         if( panned < 0 )
743         {
744             ioctl( p_vout->p_sys->i_fd,
745                    FBIOPAN_DISPLAY, &p_vout->p_sys->var_info );
746             panned++;
747         }
748     }
749
750     if( !p_vout->p_sys->b_hw_accel )
751     {
752         vlc_memcpy( p_vout->p_sys->p_video, p_pic->p->p_pixels,
753                     p_vout->p_sys->i_page_size );
754     }
755 }
756
757 #if 0
758 static void SetPalette( vout_thread_t *p_vout, uint16_t *red, uint16_t *green,
759                                                uint16_t *blue, uint16_t *transp )
760 {
761     struct fb_cmap cmap = { 0, 256, red, green, blue, transp };
762
763     ioctl( p_vout->p_sys->i_fd, FBIOPUTCMAP, &cmap );
764 }
765 #endif
766
767 /* following functions are local */
768
769 /*****************************************************************************
770  * OpenDisplay: initialize framebuffer
771  *****************************************************************************/
772 static int OpenDisplay( vout_thread_t *p_vout )
773 {
774     vout_sys_t *p_sys = (vout_sys_t *) p_vout->p_sys;
775     char *psz_device;                             /* framebuffer device path */
776     struct fb_fix_screeninfo    fix_info;     /* framebuffer fix information */
777
778     /* Open framebuffer device */
779     if( !(psz_device = config_GetPsz( p_vout, FB_DEV_VAR )) )
780     {
781         msg_Err( p_vout, "don't know which fb device to open" );
782         return VLC_EGENERIC;
783     }
784
785     p_sys->i_fd = open( psz_device, O_RDWR);
786     if( p_sys->i_fd == -1 )
787     {
788         msg_Err( p_vout, "cannot open %s (%m)", psz_device );
789         free( psz_device );
790         return VLC_EGENERIC;
791     }
792     free( psz_device );
793     psz_device = NULL;
794
795     /* Get framebuffer device information */
796     if( ioctl( p_sys->i_fd, FBIOGET_VSCREENINFO, &p_sys->var_info ) )
797     {
798         msg_Err( p_vout, "cannot get fb info (%m)" );
799         close( p_sys->i_fd );
800         return VLC_EGENERIC;
801     }
802
803     memcpy( &p_sys->old_info, &p_sys->var_info,
804             sizeof( struct fb_var_screeninfo ) );
805
806     /* Get some info on the framebuffer itself */
807     if( !p_sys->b_auto )
808     {
809         p_sys->var_info.xres = p_sys->var_info.xres_virtual = p_sys->i_width;
810         p_sys->var_info.yres = p_sys->var_info.yres_virtual = p_sys->i_height;
811         p_vout->fmt_out.i_width = p_sys->i_width;
812         p_vout->fmt_out.i_height = p_sys->i_height;
813     }
814
815     /* Set some attributes */
816     p_sys->var_info.activate = p_sys->b_tty
817                                ? FB_ACTIVATE_NXTOPEN
818                                : FB_ACTIVATE_NOW;
819     p_sys->var_info.xoffset =  0;
820     p_sys->var_info.yoffset =  0;
821
822     if( ioctl( p_sys->i_fd, FBIOPUT_VSCREENINFO, &p_sys->var_info ) )
823     {
824         msg_Err( p_vout, "cannot set fb info (%m)" );
825         close( p_sys->i_fd );
826         return VLC_EGENERIC;
827     }
828
829     /* Get some information again, in the definitive configuration */
830     if( ioctl( p_sys->i_fd, FBIOGET_FSCREENINFO, &fix_info )
831          || ioctl( p_sys->i_fd, FBIOGET_VSCREENINFO, &p_sys->var_info ) )
832     {
833         msg_Err( p_vout, "cannot get additional fb info (%m)" );
834
835         /* Restore fb config */
836         ioctl( p_sys->i_fd, FBIOPUT_VSCREENINFO, &p_sys->old_info );
837
838         close( p_sys->i_fd );
839         return VLC_EGENERIC;
840     }
841
842     /* If the fb has limitations on mode change,
843      * then keep the resolution of the fb */
844     if( (p_sys->i_height != p_sys->var_info.yres) ||
845         (p_sys->i_width != p_sys->var_info.xres) )
846     {
847         p_sys->b_auto = true;
848         msg_Warn( p_vout,
849                   "using framebuffer native resolution instead of requested (%ix%i)",
850                   p_sys->i_width, p_sys->i_height );
851     }
852     p_sys->i_height = p_sys->var_info.yres;
853     p_sys->i_width  = p_sys->var_info.xres_virtual
854                                ? p_sys->var_info.xres_virtual
855                                : p_sys->var_info.xres;
856
857     /* FIXME: if the image is full-size, it gets cropped on the left
858      * because of the xres / xres_virtual slight difference */
859     msg_Dbg( p_vout, "%ix%i (virtual %ix%i) (request %ix%i)",
860              p_sys->var_info.xres, p_sys->var_info.yres,
861              p_sys->var_info.xres_virtual,
862              p_sys->var_info.yres_virtual,
863              p_sys->i_width, p_sys->i_height );
864
865     p_sys->p_palette = NULL;
866     p_sys->b_pan = ( fix_info.ypanstep || fix_info.ywrapstep );
867
868     switch( p_sys->var_info.bits_per_pixel )
869     {
870     case 8:
871         p_sys->p_palette = malloc( 8 * 256 * sizeof( uint16_t ) );
872         if( !p_sys->p_palette )
873         {
874             /* Restore fb config */
875             ioctl( p_sys->i_fd, FBIOPUT_VSCREENINFO, &p_sys->old_info );
876
877             close( p_sys->i_fd );
878             return VLC_ENOMEM;
879         }
880         p_sys->fb_cmap.start = 0;
881         p_sys->fb_cmap.len = 256;
882         p_sys->fb_cmap.red = p_sys->p_palette;
883         p_sys->fb_cmap.green = p_sys->p_palette + 256 * sizeof( uint16_t );
884         p_sys->fb_cmap.blue = p_sys->p_palette + 2 * 256 * sizeof( uint16_t );
885         p_sys->fb_cmap.transp = p_sys->p_palette + 3 * 256 * sizeof( uint16_t );
886
887         /* Save the colormap */
888         ioctl( p_sys->i_fd, FBIOGETCMAP, &p_sys->fb_cmap );
889
890         p_sys->i_bytes_per_pixel = 1;
891         break;
892
893     case 15:
894     case 16:
895         p_sys->i_bytes_per_pixel = 2;
896         break;
897
898     case 24:
899         p_sys->i_bytes_per_pixel = 3;
900         break;
901
902     case 32:
903         p_sys->i_bytes_per_pixel = 4;
904         break;
905
906     default:
907         msg_Err( p_vout, "screen depth %d is not supported",
908                          p_sys->var_info.bits_per_pixel );
909
910         /* Restore fb config */
911         ioctl( p_sys->i_fd, FBIOPUT_VSCREENINFO, &p_sys->old_info );
912
913         close( p_sys->i_fd );
914         return VLC_EGENERIC;
915     }
916
917     p_sys->i_page_size = p_sys->i_width * p_sys->i_height *
918                          p_sys->i_bytes_per_pixel;
919
920     /* Map a framebuffer at the beginning */
921     p_sys->p_video = mmap( 0, p_sys->i_page_size,
922                               PROT_READ | PROT_WRITE, MAP_SHARED,
923                               p_sys->i_fd, 0 );
924
925     if( p_sys->p_video == ((void*)-1) )
926     {
927         msg_Err( p_vout, "cannot map video memory (%m)" );
928
929         if( p_sys->var_info.bits_per_pixel == 8 )
930         {
931             free( p_sys->p_palette );
932             p_sys->p_palette = NULL;
933         }
934
935         /* Restore fb config */
936         ioctl( p_sys->i_fd, FBIOPUT_VSCREENINFO, &p_vout->p_sys->old_info );
937
938         close( p_sys->i_fd );
939         return VLC_EGENERIC;
940     }
941
942     msg_Dbg( p_vout, "framebuffer type=%d, visual=%d, ypanstep=%d, "
943              "ywrap=%d, accel=%d", fix_info.type, fix_info.visual,
944              fix_info.ypanstep, fix_info.ywrapstep, fix_info.accel );
945     return VLC_SUCCESS;
946 }
947
948 /*****************************************************************************
949  * CloseDisplay: terminate FB video thread output method
950  *****************************************************************************/
951 static void CloseDisplay( vout_thread_t *p_vout )
952 {
953     /* Clear display */
954     memset( p_vout->p_sys->p_video, 0, p_vout->p_sys->i_page_size );
955
956     /* Restore palette */
957     if( p_vout->p_sys->var_info.bits_per_pixel == 8 )
958     {
959         ioctl( p_vout->p_sys->i_fd,
960                FBIOPUTCMAP, &p_vout->p_sys->fb_cmap );
961         free( p_vout->p_sys->p_palette );
962         p_vout->p_sys->p_palette = NULL;
963     }
964
965     /* Restore fb config */
966     ioctl( p_vout->p_sys->i_fd,
967            FBIOPUT_VSCREENINFO, &p_vout->p_sys->old_info );
968
969     /* Close fb */
970     close( p_vout->p_sys->i_fd );
971 }
972
973 /*****************************************************************************
974  * SwitchDisplay: VT change signal handler
975  *****************************************************************************
976  * This function activates or deactivates the output of the thread. It is
977  * called by the VT driver, on terminal change.
978  *****************************************************************************/
979 static void SwitchDisplay( int i_signal )
980 {
981 #if 0
982     vout_thread_t *p_vout;
983
984     vlc_mutex_lock( &p_vout_bank->lock );
985
986     /* XXX: only test the first video output */
987     if( p_vout_bank->i_count )
988     {
989         p_vout = p_vout_bank->pp_vout[0];
990
991         switch( i_signal )
992         {
993         case SIGUSR1:                                /* vt has been released */
994             p_vout->b_active = 0;
995             ioctl( p_sys->i_tty, VT_RELDISP, 1 );
996             break;
997         case SIGUSR2:                                /* vt has been acquired */
998             p_vout->b_active = 1;
999             ioctl( p_sys->i_tty, VT_RELDISP, VT_ACTIVATE );
1000             /* handle blanking */
1001             vlc_mutex_lock( &p_vout->change_lock );
1002             p_vout->i_changes |= VOUT_SIZE_CHANGE;
1003             vlc_mutex_unlock( &p_vout->change_lock );
1004             break;
1005         }
1006     }
1007
1008     vlc_mutex_unlock( &p_vout_bank->lock );
1009 #endif
1010 }
1011
1012 /*****************************************************************************
1013  * TextMode and GfxMode : switch tty to text/graphic mode
1014  *****************************************************************************
1015  * These functions toggle the tty mode.
1016  *****************************************************************************/
1017 static void TextMode( int i_tty )
1018 {
1019     /* return to text mode */
1020     if( -1 == ioctl(i_tty, KDSETMODE, KD_TEXT) )
1021     {
1022         /*msg_Err( p_vout, "failed ioctl KDSETMODE KD_TEXT" );*/
1023     }
1024 }
1025
1026 static void GfxMode( int i_tty )
1027 {
1028     /* switch to graphic mode */
1029     if( -1 == ioctl(i_tty, KDSETMODE, KD_GRAPHICS) )
1030     {
1031         /*msg_Err( p_vout, "failed ioctl KDSETMODE KD_GRAPHICS" );*/
1032     }
1033 }