vout.c
上传用户:kjfoods
上传日期:2020-07-06
资源大小:29949k
文件大小:8k
源码类别:

midi

开发平台:

Unix_Linux

  1. /*****************************************************************************
  2.  * vout_dummy.c: Dummy video output display method for testing purposes
  3.  *****************************************************************************
  4.  * Copyright (C) 2000, 2001 the VideoLAN team
  5.  * $Id: 0b4cdbb481968df2e71d4a81845dd575176e7a5b $
  6.  *
  7.  * Authors: Samuel Hocevar <sam@zoy.org>
  8.  *
  9.  * This program is free software; you can redistribute it and/or modify
  10.  * it under the terms of the GNU General Public License as published by
  11.  * the Free Software Foundation; either version 2 of the License, or
  12.  * (at your option) any later version.
  13.  *
  14.  * This program is distributed in the hope that it will be useful,
  15.  * but WITHOUT ANY WARRANTY; without even the implied warranty of
  16.  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
  17.  * GNU General Public License for more details.
  18.  *
  19.  * You should have received a copy of the GNU General Public License
  20.  * along with this program; if not, write to the Free Software
  21.  * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston MA 02110-1301, USA.
  22.  *****************************************************************************/
  23. /*****************************************************************************
  24.  * Preamble
  25.  *****************************************************************************/
  26. #ifdef HAVE_CONFIG_H
  27. # include "config.h"
  28. #endif
  29. #include <vlc_common.h>
  30. #include <vlc_vout.h>
  31. #define DUMMY_WIDTH 16
  32. #define DUMMY_HEIGHT 16
  33. #define DUMMY_MAX_DIRECTBUFFERS 10
  34. #include "dummy.h"
  35. /*****************************************************************************
  36.  * Local prototypes
  37.  *****************************************************************************/
  38. static int  Init       ( vout_thread_t * );
  39. static void End        ( vout_thread_t * );
  40. static int  Manage     ( vout_thread_t * );
  41. static void Render     ( vout_thread_t *, picture_t * );
  42. static void Display    ( vout_thread_t *, picture_t * );
  43. static void SetPalette ( vout_thread_t *, uint16_t *, uint16_t *, uint16_t * );
  44. static int  Control   ( vout_thread_t *, int, va_list );
  45. /*****************************************************************************
  46.  * OpenVideo: activates dummy video thread output method
  47.  *****************************************************************************
  48.  * This function initializes a dummy vout method.
  49.  *****************************************************************************/
  50. int OpenVideo ( vlc_object_t *p_this )
  51. {
  52.     vout_thread_t * p_vout = (vout_thread_t *)p_this;
  53.     p_vout->pf_init = Init;
  54.     p_vout->pf_end = End;
  55.     p_vout->pf_manage = Manage;
  56.     p_vout->pf_render = Render;
  57.     p_vout->pf_display = Display;
  58.     p_vout->pf_control = Control;
  59.     return VLC_SUCCESS;
  60. }
  61. /*****************************************************************************
  62.  * Control: control facility for the vout
  63.  *****************************************************************************/
  64. static int Control( vout_thread_t *p_vout, int i_query, va_list args )
  65. {
  66.     (void) p_vout; (void) i_query; (void) args;
  67.     return VLC_EGENERIC;
  68. }
  69. /*****************************************************************************
  70.  * Init: initialize dummy video thread output method
  71.  *****************************************************************************/
  72. static int Init( vout_thread_t *p_vout )
  73. {
  74.     int i_index, i_chroma;
  75.     char *psz_chroma;
  76.     picture_t *p_pic;
  77.     bool b_chroma = 0;
  78.     psz_chroma = config_GetPsz( p_vout, "dummy-chroma" );
  79.     if( psz_chroma )
  80.     {
  81.         if( strlen( psz_chroma ) >= 4 )
  82.         {
  83.             i_chroma = VLC_FOURCC( psz_chroma[0], psz_chroma[1],
  84.                                    psz_chroma[2], psz_chroma[3] );
  85.             b_chroma = 1;
  86.         }
  87.         free( psz_chroma );
  88.     }
  89.     I_OUTPUTPICTURES = 0;
  90.     /* Initialize the output structure */
  91.     if( b_chroma )
  92.     {
  93.         msg_Dbg( p_vout, "forcing chroma 0x%.8x (%4.4s)",
  94.                          i_chroma, (char*)&i_chroma );
  95.         p_vout->output.i_chroma = i_chroma;
  96.         if ( i_chroma == VLC_FOURCC( 'R', 'G', 'B', '2' ) )
  97.         {
  98.             p_vout->output.pf_setpalette = SetPalette;
  99.         }
  100.         p_vout->output.i_width  = p_vout->render.i_width;
  101.         p_vout->output.i_height = p_vout->render.i_height;
  102.         p_vout->output.i_aspect = p_vout->render.i_aspect;
  103.     }
  104.     else
  105.     {
  106.         /* Use same chroma as input */
  107.         p_vout->output.i_chroma = p_vout->render.i_chroma;
  108.         p_vout->output.i_rmask  = p_vout->render.i_rmask;
  109.         p_vout->output.i_gmask  = p_vout->render.i_gmask;
  110.         p_vout->output.i_bmask  = p_vout->render.i_bmask;
  111.         p_vout->output.i_width  = p_vout->render.i_width;
  112.         p_vout->output.i_height = p_vout->render.i_height;
  113.         p_vout->output.i_aspect = p_vout->render.i_aspect;
  114.     }
  115.     /* Try to initialize DUMMY_MAX_DIRECTBUFFERS direct buffers */
  116.     while( I_OUTPUTPICTURES < DUMMY_MAX_DIRECTBUFFERS )
  117.     {
  118.         p_pic = NULL;
  119.         /* Find an empty picture slot */
  120.         for( i_index = 0 ; i_index < VOUT_MAX_PICTURES ; i_index++ )
  121.         {
  122.             if( p_vout->p_picture[ i_index ].i_status == FREE_PICTURE )
  123.             {
  124.                 p_pic = p_vout->p_picture + i_index;
  125.                 break;
  126.             }
  127.         }
  128.         /* Allocate the picture */
  129.         if( p_pic == NULL )
  130.         {
  131.             break;
  132.         }
  133.         vout_AllocatePicture( VLC_OBJECT(p_vout), p_pic, p_vout->output.i_chroma,
  134.                               p_vout->output.i_width, p_vout->output.i_height,
  135.                               p_vout->output.i_aspect );
  136.         if( p_pic->i_planes == 0 )
  137.         {
  138.             break;
  139.         }
  140.         p_pic->i_status = DESTROYED_PICTURE;
  141.         p_pic->i_type   = DIRECT_PICTURE;
  142.         PP_OUTPUTPICTURE[ I_OUTPUTPICTURES ] = p_pic;
  143.         I_OUTPUTPICTURES++;
  144.     }
  145.     return( 0 );
  146. }
  147. /*****************************************************************************
  148.  * End: terminate dummy video thread output method
  149.  *****************************************************************************/
  150. static void End( vout_thread_t *p_vout )
  151. {
  152.     int i_index;
  153.     /* Free the fake output buffers we allocated */
  154.     for( i_index = I_OUTPUTPICTURES ; i_index ; )
  155.     {
  156.         i_index--;
  157.         free( PP_OUTPUTPICTURE[ i_index ]->p_data_orig );
  158.     }
  159. }
  160. /*****************************************************************************
  161.  * Manage: handle dummy events
  162.  *****************************************************************************
  163.  * This function should be called regularly by video output thread. It manages
  164.  * console events. It returns a non null value on error.
  165.  *****************************************************************************/
  166. static int Manage( vout_thread_t *p_vout )
  167. {
  168.     VLC_UNUSED(p_vout);
  169.     return( 0 );
  170. }
  171. /*****************************************************************************
  172.  * Render: render previously calculated output
  173.  *****************************************************************************/
  174. static void Render( vout_thread_t *p_vout, picture_t *p_pic )
  175. {
  176.     VLC_UNUSED(p_vout); VLC_UNUSED(p_pic);
  177.     /* No need to do anything, the fake direct buffers stay as they are */
  178. }
  179. /*****************************************************************************
  180.  * Display: displays previously rendered output
  181.  *****************************************************************************/
  182. static void Display( vout_thread_t *p_vout, picture_t *p_pic )
  183. {
  184.     VLC_UNUSED(p_vout); VLC_UNUSED(p_pic);
  185.     /* No need to do anything, the fake direct buffers stay as they are */
  186. }
  187. /*****************************************************************************
  188.  * SetPalette: set the palette for the picture
  189.  *****************************************************************************/
  190. static void SetPalette ( vout_thread_t *p_vout,
  191.                          uint16_t *red, uint16_t *green, uint16_t *blue )
  192. {
  193.     VLC_UNUSED(p_vout); VLC_UNUSED(red); VLC_UNUSED(green); VLC_UNUSED(blue);
  194.     /* No need to do anything, the fake direct buffers stay as they are */
  195. }