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

多媒体

开发平台:

MultiPlatform

  1. /*****************************************************************************
  2.  * snapshot.c : snapshot plugin for vlc
  3.  *****************************************************************************
  4.  * Copyright (C) 2002 VideoLAN
  5.  * $Id: snapshot.c 8644 2004-09-05 16:53:04Z fkuehne $
  6.  *
  7.  * Authors: Olivier Aubert <oaubert@lisi.univ-lyon1.fr>
  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>
  27. #include <vlc/vlc.h>
  28. #include <vlc/vout.h>
  29. #include <vlc/intf.h>
  30. #include <snapshot.h>
  31. /*****************************************************************************
  32.  * Local prototypes
  33.  *****************************************************************************/
  34. static int  Create    ( vlc_object_t * );
  35. static void Destroy   ( vlc_object_t * );
  36. static int  Init      ( vout_thread_t * );
  37. static void Display   ( vout_thread_t *, picture_t * );
  38. /*****************************************************************************
  39.  * Module descriptor
  40.  *****************************************************************************/
  41. #define WIDTH_TEXT N_( "snapshot width" )
  42. #define WIDTH_LONGTEXT N_( "Set the width of the snapshot image." )
  43. #define HEIGHT_TEXT N_( "snapshot height" )
  44. #define HEIGHT_LONGTEXT N_( "Set the height of the snapshot image." )
  45. #define CHROMA_TEXT N_( "chroma" )
  46. #define CHROMA_LONGTEXT N_( "Set the desired chroma for the snapshot image (a 4 character string)." )
  47. #define CACHE_TEXT N_( "cache size (number of images)" )
  48. #define CACHE_LONGTEXT N_( "Set the cache size (number of images to keep)." )
  49. vlc_module_begin( );
  50.     set_description( _( "snapshot module" ) );
  51.     set_capability( "video output", 0 );
  52.     add_integer( "snapshot-width", 320, NULL, WIDTH_TEXT, WIDTH_LONGTEXT, VLC_FALSE );
  53.     add_integer( "snapshot-height", 200, NULL, HEIGHT_TEXT, HEIGHT_LONGTEXT, VLC_FALSE );
  54.     add_string( "snapshot-chroma", "RV32", NULL, CHROMA_TEXT, CHROMA_LONGTEXT, VLC_TRUE );
  55.     add_integer( "snapshot-cache-size", 50, NULL, CACHE_TEXT, CACHE_LONGTEXT, VLC_TRUE );
  56.     set_callbacks( Create, Destroy );
  57. vlc_module_end();
  58. /*****************************************************************************
  59.  * vout_sys_t: video output descriptor
  60.  *****************************************************************************/
  61. struct vout_sys_t
  62. {
  63.     snapshot_t **p_list;    /* List of available snapshots */
  64.     int i_index;            /* Index of the next available list member */
  65.     int i_size;             /* Size of the cache */
  66.     int i_datasize;         /* Size of an image */
  67.     input_thread_t *p_input;             /* The input thread */
  68. };
  69. /*****************************************************************************
  70.  * Create: allocates video thread
  71.  *****************************************************************************
  72.  * This function allocates and initializes a vout method.
  73.  *****************************************************************************/
  74. static int Create( vlc_object_t *p_this )
  75. {
  76.     vout_thread_t *p_vout = ( vout_thread_t * )p_this;
  77.     /* Allocate instance and initialize some members */
  78.     p_vout->p_sys = malloc( sizeof( vout_sys_t ) );
  79.     if( ! p_vout->p_sys )
  80.         return VLC_ENOMEM;
  81.     var_Create( p_this, "snapshot-width", VLC_VAR_INTEGER );
  82.     var_Create( p_this, "snapshot-height", VLC_VAR_INTEGER );
  83.     var_Create( p_this, "snapshot-datasize", VLC_VAR_INTEGER );
  84.     var_Create( p_this, "snapshot-cache-size", VLC_VAR_INTEGER );
  85.     var_Create( p_this, "snapshot-list-pointer", VLC_VAR_ADDRESS );
  86.     p_vout->pf_init = Init;
  87.     p_vout->pf_end = NULL;
  88.     p_vout->pf_manage = NULL;
  89.     p_vout->pf_render = NULL;
  90.     p_vout->pf_display = Display;
  91.     return VLC_SUCCESS;
  92. }
  93. /*****************************************************************************
  94.  * Init: initialize video thread
  95.  *****************************************************************************/
  96. static int Init( vout_thread_t *p_vout )
  97. {
  98.     int i_index;
  99.     picture_t *p_pic;
  100.     vlc_value_t val;
  101.     char* psz_chroma;
  102.     int i_chroma;
  103.     int i_width;
  104.     int i_height;
  105.     int i_datasize;
  106.     i_width  = config_GetInt( p_vout, "snapshot-width" );
  107.     i_height = config_GetInt( p_vout, "snapshot-height" );
  108.     psz_chroma = config_GetPsz( p_vout, "snapshot-chroma" );
  109.     if( psz_chroma )
  110.     {
  111.         if( strlen( psz_chroma ) < 4 )
  112.         {
  113.             msg_Err( p_vout, "snapshot-chroma should be 4 characters long." );
  114.             return VLC_EGENERIC;
  115.         }
  116.         i_chroma = VLC_FOURCC( psz_chroma[0], psz_chroma[1],
  117.                                psz_chroma[2], psz_chroma[3] );
  118.         free( psz_chroma );
  119.     }
  120.     else
  121.     {
  122.         msg_Err( p_vout, "Cannot find chroma information." );
  123.         return VLC_EGENERIC;
  124.     }
  125.     I_OUTPUTPICTURES = 0;
  126.     /* Initialize the output structure */
  127.     p_vout->output.i_chroma = i_chroma;
  128.     p_vout->output.pf_setpalette = NULL;
  129.     p_vout->output.i_width = i_width;
  130.     p_vout->output.i_height = i_height;
  131.     p_vout->output.i_aspect = p_vout->output.i_width
  132.                                * VOUT_ASPECT_FACTOR / p_vout->output.i_height;
  133.     /* Define the bitmasks */
  134.     switch( i_chroma )
  135.     {
  136.       case VLC_FOURCC( 'R','V','1','5' ):
  137.         p_vout->output.i_rmask = 0x001f;
  138.         p_vout->output.i_gmask = 0x03e0;
  139.         p_vout->output.i_bmask = 0x7c00;
  140.         break;
  141.       case VLC_FOURCC( 'R','V','1','6' ):
  142.         p_vout->output.i_rmask = 0x001f;
  143.         p_vout->output.i_gmask = 0x07e0;
  144.         p_vout->output.i_bmask = 0xf800;
  145.         break;
  146.       case VLC_FOURCC( 'R','V','2','4' ):
  147.         p_vout->output.i_rmask = 0xff0000;
  148.         p_vout->output.i_gmask = 0x00ff00;
  149.         p_vout->output.i_bmask = 0x0000ff;
  150.         break;
  151.       case VLC_FOURCC( 'R','V','3','2' ):
  152.         p_vout->output.i_rmask = 0xff0000;
  153.         p_vout->output.i_gmask = 0x00ff00;
  154.         p_vout->output.i_bmask = 0x0000ff;
  155.         break;
  156.     }
  157.     /* Try to initialize 1 direct buffer */
  158.     p_pic = NULL;
  159.     /* Find an empty picture slot */
  160.     for( i_index = 0 ; i_index < VOUT_MAX_PICTURES ; i_index++ )
  161.     {
  162.         if( p_vout->p_picture[ i_index ].i_status == FREE_PICTURE )
  163.         {
  164.             p_pic = p_vout->p_picture + i_index;
  165.             break;
  166.         }
  167.     }
  168.     /* Allocate the picture */
  169.     if( p_pic == NULL )
  170.     {
  171.         return VLC_SUCCESS;
  172.     }
  173.     vout_AllocatePicture( VLC_OBJECT(p_vout), p_pic, p_vout->output.i_chroma,
  174.                           p_vout->output.i_width, p_vout->output.i_height,
  175.                           p_vout->output.i_aspect );
  176.     if( p_pic->i_planes == 0 )
  177.     {
  178.         return VLC_EGENERIC;
  179.     }
  180.     p_pic->i_status = DESTROYED_PICTURE;
  181.     p_pic->i_type   = DIRECT_PICTURE;
  182.     PP_OUTPUTPICTURE[ I_OUTPUTPICTURES ] = p_pic;
  183.     I_OUTPUTPICTURES++;
  184.     /* Get datasize and set variables */
  185.     i_datasize = i_width * i_height * p_pic->p->i_pixel_pitch;
  186.     p_vout->p_sys->i_datasize = i_datasize;
  187.     p_vout->p_sys->i_index = 0;
  188.     p_vout->p_sys->i_size = config_GetInt( p_vout, "snapshot-cache-size" );
  189.     if( p_vout->p_sys->i_size < 2 )
  190.     {
  191.         msg_Err( p_vout, "snapshot-cache-size must be at least 1." );
  192.         return VLC_EGENERIC;
  193.     }
  194.     p_vout->p_sys->p_list = malloc( p_vout->p_sys->i_size * sizeof( snapshot_t * ) );
  195.     if( p_vout->p_sys->p_list == NULL )
  196.         return VLC_ENOMEM;
  197.     /* Initialize the structures for the circular buffer */
  198.     for( i_index = 0; i_index < p_vout->p_sys->i_size; i_index++ )
  199.     {
  200.         snapshot_t *p_snapshot = malloc( sizeof( snapshot_t ) );
  201.         if( p_snapshot == NULL )
  202.             return VLC_ENOMEM;
  203.         p_snapshot->i_width = i_width;
  204.         p_snapshot->i_height = i_height;
  205.         p_snapshot->i_datasize = i_datasize;
  206.         p_snapshot->date = 0;
  207.         p_snapshot->p_data = ( char* ) malloc( i_datasize );
  208.         if( p_snapshot->p_data == NULL )
  209.             return VLC_ENOMEM;
  210.         p_vout->p_sys->p_list[i_index] = p_snapshot;
  211.     }
  212.     val.i_int = i_width;
  213.     var_Set( p_vout, "snapshot-width", val );
  214.     val.i_int = i_height;
  215.     var_Set( p_vout, "snapshot-height", val );
  216.     val.i_int = i_datasize;
  217.     var_Set( p_vout, "snapshot-datasize", val );
  218.     val.i_int = p_vout->p_sys->i_size;
  219.     var_Set( p_vout, "snapshot-cache-size", val );
  220.     val.p_address = p_vout->p_sys->p_list;
  221.     var_Set( p_vout, "snapshot-list-pointer", val );
  222.     /* Get the p_input pointer (to access video times) */
  223.     p_vout->p_sys->p_input = vlc_object_find( p_vout, VLC_OBJECT_INPUT,
  224.                                               FIND_PARENT );
  225.     if( !p_vout->p_sys->p_input )
  226.         return VLC_ENOOBJ;
  227.     if( var_Create( p_vout->p_sys->p_input, "snapshot-id", VLC_VAR_INTEGER ) )
  228.     {
  229.         msg_Err( p_vout, "Cannot create snapshot-id variable in p_input (%d).",
  230.                  p_vout->p_sys->p_input->i_object_id );
  231.         return VLC_EGENERIC;
  232.     }
  233.     /* Register the snapshot vout module at the input level */
  234.     val.i_int = p_vout->i_object_id;
  235.     if( var_Set( p_vout->p_sys->p_input, "snapshot-id", val ) )
  236.     {
  237.         msg_Err( p_vout, "Cannot register snapshot-id in p_input (%d).",
  238.                  p_vout->p_sys->p_input->i_object_id );
  239.         return VLC_EGENERIC;
  240.     }
  241.     return VLC_SUCCESS;
  242. }
  243. /*****************************************************************************
  244.  * Destroy: destroy video thread
  245.  *****************************************************************************
  246.  * Terminate an output method created by Create
  247.  *****************************************************************************/
  248. static void Destroy( vlc_object_t *p_this )
  249. {
  250.     vout_thread_t *p_vout = ( vout_thread_t * )p_this;
  251.     vlc_object_t *p_vlc;
  252.     int i_index;
  253.     vlc_object_release( p_vout->p_sys->p_input );
  254.     var_Destroy( p_this, "snapshot-width" );
  255.     var_Destroy( p_this, "snapshot-height" );
  256.     var_Destroy( p_this, "snapshot-datasize" );
  257.     p_vlc = vlc_object_find( p_this, VLC_OBJECT_ROOT, FIND_PARENT );
  258.     if( p_vlc )
  259.     {
  260.         /* UnRegister the snapshot vout module at the root level */
  261.         /* var_Destroy (p_vlc, "snapshot-id"); */
  262.         var_Destroy( p_this->p_libvlc, "snapshot-id" );
  263.         vlc_object_release( p_vlc );
  264.     }
  265.     for( i_index = 0 ; i_index < p_vout->p_sys->i_size ; i_index++ )
  266.     {
  267.         free( p_vout->p_sys->p_list[ i_index ]->p_data );
  268.     }
  269.     free( p_vout->p_sys->p_list );
  270.     /* Destroy structure */
  271.     free( p_vout->p_sys );
  272. }
  273. /* Return the position in ms from the start of the movie */
  274. static mtime_t snapshot_GetMovietime( vout_thread_t *p_vout )
  275. {
  276.     input_thread_t* p_input;
  277.     vlc_value_t val;
  278.     mtime_t i_result;
  279.     p_input = p_vout->p_sys->p_input;
  280.     if( !p_input )
  281.         return 0;
  282.     var_Get( p_input, "time", &val );
  283.     i_result = val.i_time;
  284.     return( i_result / 1000 );
  285. }
  286. /*****************************************************************************
  287.  * Display: displays previously rendered output
  288.  *****************************************************************************
  289.  * This function copies the rendered picture into our circular buffer.
  290.  *****************************************************************************/
  291. static void Display( vout_thread_t *p_vout, picture_t *p_pic )
  292. {
  293.     int i_index;
  294.     mtime_t i_date;
  295.     i_index = p_vout->p_sys->i_index;
  296.     p_vout->p_vlc->pf_memcpy( p_vout->p_sys->p_list[i_index]->p_data,
  297.                               p_pic->p->p_pixels,
  298.                               p_vout->p_sys->i_datasize );
  299.     i_date = snapshot_GetMovietime( p_vout );
  300.     p_vout->p_sys->p_list[i_index]->date = i_date;
  301.     i_index++;
  302.     if( i_index >= p_vout->p_sys->i_size )
  303.     {
  304.         i_index = 0;
  305.     }
  306.     p_vout->p_sys->i_index = i_index;
  307. }