vout.c
上传用户:riyaled888
上传日期:2009-03-27
资源大小:7338k
文件大小:7k
源码类别:

多媒体

开发平台:

MultiPlatform

  1. /*****************************************************************************
  2.  * vout_dummy.c: Dummy video output display method for testing purposes
  3.  *****************************************************************************
  4.  * Copyright (C) 2000, 2001 VideoLAN
  5.  * $Id: vout.c 8568 2004-08-29 12:40:33Z gbazin $
  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., 59 Temple Place - Suite 330, Boston, MA  02111, USA.
  22.  *****************************************************************************/
  23. /*****************************************************************************
  24.  * Preamble
  25.  *****************************************************************************/
  26. #include <stdlib.h>                                                /* free() */
  27. #include <string.h>                                            /* strerror() */
  28. #include <vlc/vlc.h>
  29. #include <vlc/vout.h>
  30. #define DUMMY_WIDTH 16
  31. #define DUMMY_HEIGHT 16
  32. #define DUMMY_MAX_DIRECTBUFFERS 10
  33. /*****************************************************************************
  34.  * Local prototypes
  35.  *****************************************************************************/
  36. static int  Init       ( vout_thread_t * );
  37. static void End        ( vout_thread_t * );
  38. static int  Manage     ( vout_thread_t * );
  39. static void Render     ( vout_thread_t *, picture_t * );
  40. static void Display    ( vout_thread_t *, picture_t * );
  41. static void SetPalette ( vout_thread_t *, uint16_t *, uint16_t *, uint16_t * );
  42. /*****************************************************************************
  43.  * OpenVideo: activates dummy video thread output method
  44.  *****************************************************************************
  45.  * This function initializes a dummy vout method.
  46.  *****************************************************************************/
  47. int E_(OpenVideo) ( vlc_object_t *p_this )
  48. {
  49.     vout_thread_t * p_vout = (vout_thread_t *)p_this;
  50.     p_vout->pf_init = Init;
  51.     p_vout->pf_end = End;
  52.     p_vout->pf_manage = Manage;
  53.     p_vout->pf_render = Render;
  54.     p_vout->pf_display = Display;
  55.     return VLC_SUCCESS;
  56. }
  57. /*****************************************************************************
  58.  * Init: initialize dummy video thread output method
  59.  *****************************************************************************/
  60. static int Init( vout_thread_t *p_vout )
  61. {
  62.     int i_index, i_chroma;
  63.     char *psz_chroma;
  64.     picture_t *p_pic;
  65.     vlc_bool_t b_chroma = 0;
  66.     psz_chroma = config_GetPsz( p_vout, "dummy-chroma" );
  67.     if( psz_chroma )
  68.     {
  69.         if( strlen( psz_chroma ) >= 4 )
  70.         {
  71.             i_chroma = VLC_FOURCC( psz_chroma[0], psz_chroma[1],
  72.                                    psz_chroma[2], psz_chroma[3] );
  73.             b_chroma = 1;
  74.         }
  75.         free( psz_chroma );
  76.     }
  77.     I_OUTPUTPICTURES = 0;
  78.     /* Initialize the output structure */
  79.     if( b_chroma )
  80.     {
  81.         msg_Dbg( p_vout, "forcing chroma 0x%.8x (%4.4s)",
  82.                          i_chroma, (char*)&i_chroma );
  83.         p_vout->output.i_chroma = i_chroma;
  84.         if ( i_chroma == VLC_FOURCC( 'R', 'G', 'B', '2' ) )
  85.         {
  86.             p_vout->output.pf_setpalette = SetPalette;
  87.         }
  88.         p_vout->output.i_width  = p_vout->render.i_width;
  89.         p_vout->output.i_height = p_vout->render.i_height;
  90.         p_vout->output.i_aspect = p_vout->render.i_aspect;
  91.     }
  92.     else
  93.     {
  94.         /* Use same chroma as input */
  95.         p_vout->output.i_chroma = p_vout->render.i_chroma;
  96.         p_vout->output.i_rmask  = p_vout->render.i_rmask;
  97.         p_vout->output.i_gmask  = p_vout->render.i_gmask;
  98.         p_vout->output.i_bmask  = p_vout->render.i_bmask;
  99.         p_vout->output.i_width  = p_vout->render.i_width;
  100.         p_vout->output.i_height = p_vout->render.i_height;
  101.         p_vout->output.i_aspect = p_vout->render.i_aspect;
  102.     }
  103.     /* Try to initialize DUMMY_MAX_DIRECTBUFFERS direct buffers */
  104.     while( I_OUTPUTPICTURES < DUMMY_MAX_DIRECTBUFFERS )
  105.     {
  106.         p_pic = NULL;
  107.         /* Find an empty picture slot */
  108.         for( i_index = 0 ; i_index < VOUT_MAX_PICTURES ; i_index++ )
  109.         {
  110.             if( p_vout->p_picture[ i_index ].i_status == FREE_PICTURE )
  111.             {
  112.                 p_pic = p_vout->p_picture + i_index;
  113.                 break;
  114.             }
  115.         }
  116.         /* Allocate the picture */
  117.         if( p_pic == NULL )
  118.         {
  119.             break;
  120.         }
  121.         vout_AllocatePicture( VLC_OBJECT(p_vout), p_pic, p_vout->output.i_chroma,
  122.                               p_vout->output.i_width, p_vout->output.i_height,
  123.                               p_vout->output.i_aspect );
  124.         if( p_pic->i_planes == 0 )
  125.         {
  126.             break;
  127.         }
  128.         p_pic->i_status = DESTROYED_PICTURE;
  129.         p_pic->i_type   = DIRECT_PICTURE;
  130.         PP_OUTPUTPICTURE[ I_OUTPUTPICTURES ] = p_pic;
  131.         I_OUTPUTPICTURES++;
  132.     }
  133.     return( 0 );
  134. }
  135. /*****************************************************************************
  136.  * End: terminate dummy video thread output method
  137.  *****************************************************************************/
  138. static void End( vout_thread_t *p_vout )
  139. {
  140.     int i_index;
  141.     /* Free the fake output buffers we allocated */
  142.     for( i_index = I_OUTPUTPICTURES ; i_index ; )
  143.     {
  144.         i_index--;
  145.         free( PP_OUTPUTPICTURE[ i_index ]->p_data_orig );
  146.     }
  147. }
  148. /*****************************************************************************
  149.  * Manage: handle dummy events
  150.  *****************************************************************************
  151.  * This function should be called regularly by video output thread. It manages
  152.  * console events. It returns a non null value on error.
  153.  *****************************************************************************/
  154. static int Manage( vout_thread_t *p_vout )
  155. {
  156.     return( 0 );
  157. }
  158. /*****************************************************************************
  159.  * Render: render previously calculated output
  160.  *****************************************************************************/
  161. static void Render( vout_thread_t *p_vout, picture_t *p_pic )
  162. {
  163.     /* No need to do anything, the fake direct buffers stay as they are */
  164. }
  165. /*****************************************************************************
  166.  * Display: displays previously rendered output
  167.  *****************************************************************************/
  168. static void Display( vout_thread_t *p_vout, picture_t *p_pic )
  169. {
  170.     /* No need to do anything, the fake direct buffers stay as they are */
  171. }
  172. /*****************************************************************************
  173.  * SetPalette: set the palette for the picture
  174.  *****************************************************************************/
  175. static void SetPalette ( vout_thread_t *p_vout,
  176.                          uint16_t *red, uint16_t *green, uint16_t *blue )
  177. {
  178.     /* No need to do anything, the fake direct buffers stay as they are */
  179. }