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

多媒体

开发平台:

MultiPlatform

  1. /*****************************************************************************
  2.  * goom.c: based on libgoom (see http://ios.free.fr/?page=projet&quoi=1)
  3.  *****************************************************************************
  4.  * Copyright (C) 2003 VideoLAN
  5.  * $Id: goom.c 8978 2004-10-12 12:58:24Z gbazin $
  6.  *
  7.  * Authors: Laurent Aimar <fenrir@via.ecp.fr>
  8.  *          Gildas Bazin <gbazin@videolan.org>
  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., 59 Temple Place - Suite 330, Boston, MA  02111, USA.
  23.  *****************************************************************************/
  24. /*****************************************************************************
  25.  * Preamble
  26.  *****************************************************************************/
  27. #include <stdlib.h>                                      /* malloc(), free() */
  28. #include <string.h>                                              /* strdup() */
  29. #include <errno.h>
  30. #include <vlc/vlc.h>
  31. #include <vlc/input.h>
  32. #include <vlc/aout.h>
  33. #include <vlc/vout.h>
  34. #include "aout_internal.h"
  35. #ifdef USE_GOOM_TREE
  36. #   ifdef OLD_GOOM
  37. #       include "goom_core.h"
  38. #       define PluginInfo void
  39. #       define goom_update(a,b,c,d,e,f) goom_update(b,c,d,e,f)
  40. #       define goom_close(a) goom_close()
  41. #       define goom_init(a,b) NULL; goom_init(a,b,0); goom_set_font(0,0,0)
  42. #   else
  43. #       include "goom.h"
  44. #   endif
  45. #else
  46. #   include <goom/goom.h>
  47. #endif
  48. /*****************************************************************************
  49.  * Module descriptor
  50.  *****************************************************************************/
  51. static int  Open         ( vlc_object_t * );
  52. static void Close        ( vlc_object_t * );
  53. #define WIDTH_TEXT N_("Goom display width")
  54. #define HEIGHT_TEXT N_("Goom display height")
  55. #define RES_LONGTEXT N_("Allows you to change the resolution of the " 
  56.   "Goom display (bigger resolution will be prettier but more CPU intensive).")
  57. #define SPEED_TEXT N_("Goom animation speed")
  58. #define SPEED_LONGTEXT N_("Allows you to reduce the speed of the animation " 
  59.   "(default 6, max 10).")
  60. #define MAX_SPEED 10
  61. vlc_module_begin();
  62.     set_description( _("Goom effect") );
  63.     set_capability( "audio filter", 0 );
  64.     add_integer( "goom-width", 320, NULL,
  65.                  WIDTH_TEXT, RES_LONGTEXT, VLC_FALSE );
  66.     add_integer( "goom-height", 240, NULL,
  67.                  HEIGHT_TEXT, RES_LONGTEXT, VLC_FALSE );
  68.     add_integer( "goom-speed", 6, NULL,
  69.                  SPEED_TEXT, SPEED_LONGTEXT, VLC_FALSE );
  70.     set_callbacks( Open, Close );
  71.     add_shortcut( "goom" );
  72. vlc_module_end();
  73. /*****************************************************************************
  74.  * Local prototypes
  75.  *****************************************************************************/
  76. #define MAX_BLOCKS 100
  77. #define GOOM_DELAY 400000
  78. typedef struct
  79. {
  80.     VLC_COMMON_MEMBERS
  81.     vout_thread_t *p_vout;
  82.     char          *psz_title;
  83.     vlc_mutex_t   lock;
  84.     vlc_cond_t    wait;
  85.     /* Audio properties */
  86.     int i_channels;
  87.     /* Audio samples queue */
  88.     block_t       *pp_blocks[MAX_BLOCKS];
  89.     int           i_blocks;
  90.     audio_date_t  date;
  91. } goom_thread_t;
  92. typedef struct aout_filter_sys_t
  93. {
  94.     goom_thread_t *p_thread;
  95. } aout_filter_sys_t;
  96. static void DoWork   ( aout_instance_t *, aout_filter_t *, aout_buffer_t *,
  97.                        aout_buffer_t * );
  98. static void Thread   ( vlc_object_t * );
  99. static char *TitleGet( vlc_object_t * );
  100. /*****************************************************************************
  101.  * Open: open a scope effect plugin
  102.  *****************************************************************************/
  103. static int Open( vlc_object_t *p_this )
  104. {
  105.     aout_filter_t     *p_filter = (aout_filter_t *)p_this;
  106.     aout_filter_sys_t *p_sys;
  107.     goom_thread_t     *p_thread;
  108.     vlc_value_t       width, height;
  109.     if ( p_filter->input.i_format != VLC_FOURCC('f','l','3','2' )
  110.          || p_filter->output.i_format != VLC_FOURCC('f','l','3','2') )
  111.     {
  112.         msg_Warn( p_filter, "Bad input or output format" );
  113.         return VLC_EGENERIC;
  114.     }
  115.     if ( !AOUT_FMTS_SIMILAR( &p_filter->input, &p_filter->output ) )
  116.     {
  117.         msg_Warn( p_filter, "input and output formats are not similar" );
  118.         return VLC_EGENERIC;
  119.     }
  120.     p_filter->pf_do_work = DoWork;
  121.     p_filter->b_in_place = 1;
  122.     /* Allocate structure */
  123.     p_sys = p_filter->p_sys = malloc( sizeof( aout_filter_sys_t ) );
  124.     /* Create goom thread */
  125.     p_sys->p_thread = p_thread =
  126.         vlc_object_create( p_filter, sizeof( goom_thread_t ) );
  127.     vlc_object_attach( p_thread, p_this );
  128.     var_Create( p_thread, "goom-width", VLC_VAR_INTEGER|VLC_VAR_DOINHERIT );
  129.     var_Get( p_thread, "goom-width", &width );
  130.     var_Create( p_thread, "goom-height", VLC_VAR_INTEGER|VLC_VAR_DOINHERIT );
  131.     var_Get( p_thread, "goom-height", &height );
  132.     p_thread->p_vout =
  133.         vout_Request( p_filter, NULL, width.i_int, height.i_int,
  134.                       VLC_FOURCC('R','V','3','2'),
  135.                       VOUT_ASPECT_FACTOR * width.i_int/height.i_int );
  136.     if( p_thread->p_vout == NULL )
  137.     {
  138.         msg_Err( p_filter, "no suitable vout module" );
  139.         vlc_object_detach( p_thread );
  140.         vlc_object_destroy( p_thread );
  141.         free( p_sys );
  142.         return VLC_EGENERIC;
  143.     }
  144.     vlc_mutex_init( p_filter, &p_thread->lock );
  145.     vlc_cond_init( p_filter, &p_thread->wait );
  146.     p_thread->i_blocks = 0;
  147.     aout_DateInit( &p_thread->date, p_filter->output.i_rate );
  148.     aout_DateSet( &p_thread->date, 0 );
  149.     p_thread->i_channels = aout_FormatNbChannels( &p_filter->input );
  150.     p_thread->psz_title = TitleGet( VLC_OBJECT( p_filter ) );
  151.     if( vlc_thread_create( p_thread, "Goom Update Thread", Thread,
  152.                            VLC_THREAD_PRIORITY_LOW, VLC_FALSE ) )
  153.     {
  154.         msg_Err( p_filter, "cannot lauch goom thread" );
  155.         vout_Destroy( p_thread->p_vout );
  156.         vlc_mutex_destroy( &p_thread->lock );
  157.         vlc_cond_destroy( &p_thread->wait );
  158.         if( p_thread->psz_title ) free( p_thread->psz_title );
  159.         vlc_object_detach( p_thread );
  160.         vlc_object_destroy( p_thread );
  161.         free( p_sys );
  162.         return VLC_EGENERIC;
  163.     }
  164.     return VLC_SUCCESS;
  165. }
  166. /*****************************************************************************
  167.  * DoWork: process samples buffer
  168.  *****************************************************************************
  169.  * This function queues the audio buffer to be processed by the goom thread
  170.  *****************************************************************************/
  171. static void DoWork( aout_instance_t * p_aout, aout_filter_t * p_filter,
  172.                     aout_buffer_t * p_in_buf, aout_buffer_t * p_out_buf )
  173. {
  174.     aout_filter_sys_t *p_sys = p_filter->p_sys;
  175.     block_t *p_block;
  176.     p_out_buf->i_nb_samples = p_in_buf->i_nb_samples;
  177.     p_out_buf->i_nb_bytes = p_in_buf->i_nb_bytes;
  178.     /* Queue sample */
  179.     vlc_mutex_lock( &p_sys->p_thread->lock );
  180.     if( p_sys->p_thread->i_blocks == MAX_BLOCKS )
  181.     {
  182.         vlc_mutex_unlock( &p_sys->p_thread->lock );
  183.         return;
  184.     }
  185.     p_block = block_New( p_sys->p_thread, p_in_buf->i_nb_bytes );
  186.     if( !p_block ) return;
  187.     memcpy( p_block->p_buffer, p_in_buf->p_buffer, p_in_buf->i_nb_bytes );
  188.     p_block->i_pts = p_in_buf->start_date;
  189.     p_sys->p_thread->pp_blocks[p_sys->p_thread->i_blocks++] = p_block;
  190.     vlc_cond_signal( &p_sys->p_thread->wait );
  191.     vlc_mutex_unlock( &p_sys->p_thread->lock );
  192. }
  193. /*****************************************************************************
  194.  * float to s16 conversion
  195.  *****************************************************************************/
  196. static inline int16_t FloatToInt16( float f )
  197. {
  198.     if( f >= 1.0 )
  199.         return 32767;
  200.     else if( f < -1.0 )
  201.         return -32768;
  202.     else
  203.         return (int16_t)( f * 32768.0 );
  204. }
  205. /*****************************************************************************
  206.  * Fill buffer
  207.  *****************************************************************************/
  208. static int FillBuffer( int16_t *p_data, int *pi_data,
  209.                        audio_date_t *pi_date, audio_date_t *pi_date_end,
  210.                        goom_thread_t *p_this )
  211. {
  212.     int i_samples = 0;
  213.     block_t *p_block;
  214.     while( *pi_data < 512 )
  215.     {
  216.         if( !p_this->i_blocks ) return VLC_EGENERIC;
  217.         p_block = p_this->pp_blocks[0];
  218.         i_samples = __MIN( 512 - *pi_data, p_block->i_buffer /
  219.                            sizeof(float) / p_this->i_channels );
  220.         /* Date management */
  221.         if( p_block->i_pts > 0 &&
  222.             p_block->i_pts != aout_DateGet( pi_date_end ) )
  223.         {
  224.            aout_DateSet( pi_date_end, p_block->i_pts );
  225.         }
  226.         p_block->i_pts = 0;
  227.         aout_DateIncrement( pi_date_end, i_samples );
  228.         while( i_samples > 0 )
  229.         {
  230.             float *p_float = (float *)p_block->p_buffer;
  231.             p_data[*pi_data] = FloatToInt16( p_float[0] );
  232.             if( p_this->i_channels > 1 )
  233.                 p_data[512 + *pi_data] = FloatToInt16( p_float[1] );
  234.             (*pi_data)++;
  235.             p_block->p_buffer += (sizeof(float) * p_this->i_channels);
  236.             p_block->i_buffer -= (sizeof(float) * p_this->i_channels);
  237.             i_samples--;
  238.         }
  239.         if( !p_block->i_buffer )
  240.         {
  241.             block_Release( p_block );
  242.             p_this->i_blocks--;
  243.             if( p_this->i_blocks )
  244.                 memmove( p_this->pp_blocks, p_this->pp_blocks + 1,
  245.                          p_this->i_blocks * sizeof(block_t *) );
  246.         }
  247.     }
  248.     *pi_date = *pi_date_end;
  249.     *pi_data = 0;
  250.     return VLC_SUCCESS;
  251. }
  252. /*****************************************************************************
  253.  * Thread:
  254.  *****************************************************************************/
  255. static void Thread( vlc_object_t *p_this )
  256. {
  257.     goom_thread_t *p_thread = (goom_thread_t*)p_this;
  258.     vlc_value_t width, height, speed;
  259.     audio_date_t i_pts;
  260.     int16_t p_data[2][512];
  261.     int i_data = 0, i_count = 0;
  262.     PluginInfo *p_plugin_info;
  263.     var_Get( p_this, "goom-width", &width );
  264.     var_Get( p_this, "goom-height", &height );
  265.     var_Create( p_thread, "goom-speed", VLC_VAR_INTEGER|VLC_VAR_DOINHERIT );
  266.     var_Get( p_thread, "goom-speed", &speed );
  267.     speed.i_int = MAX_SPEED - speed.i_int;
  268.     if( speed.i_int < 0 ) speed.i_int = 0;
  269.     p_plugin_info = goom_init( width.i_int, height.i_int );
  270.     while( !p_thread->b_die )
  271.     {
  272.         uint32_t  *plane;
  273.         picture_t *p_pic;
  274.         /* goom_update is damn slow, so just copy data and release the lock */
  275.         vlc_mutex_lock( &p_thread->lock );
  276.         if( FillBuffer( (int16_t *)p_data, &i_data, &i_pts,
  277.                         &p_thread->date, p_thread ) != VLC_SUCCESS )
  278.             vlc_cond_wait( &p_thread->wait, &p_thread->lock );
  279.         vlc_mutex_unlock( &p_thread->lock );
  280.         /* Speed selection */
  281.         if( speed.i_int && (++i_count % (speed.i_int+1)) ) continue;
  282.         /* Frame dropping if necessary */
  283.         if( aout_DateGet( &i_pts ) + GOOM_DELAY <= mdate() ) continue;
  284.         plane = goom_update( p_plugin_info, p_data, 0, 0.0,
  285.                              p_thread->psz_title, NULL );
  286.         if( p_thread->psz_title )
  287.         {
  288.             free( p_thread->psz_title );
  289.             p_thread->psz_title = NULL;
  290.         }
  291.         while( !( p_pic = vout_CreatePicture( p_thread->p_vout, 0, 0, 0 ) ) &&
  292.                !p_thread->b_die )
  293.         {
  294.             msleep( VOUT_OUTMEM_SLEEP );
  295.         }
  296.         if( p_pic == NULL ) break;
  297.         memcpy( p_pic->p[0].p_pixels, plane, width.i_int * height.i_int * 4 );
  298.         vout_DatePicture( p_thread->p_vout, p_pic,
  299.                           aout_DateGet( &i_pts ) + GOOM_DELAY );
  300.         vout_DisplayPicture( p_thread->p_vout, p_pic );
  301.     }
  302.     goom_close( p_plugin_info );
  303. }
  304. /*****************************************************************************
  305.  * Close: close the plugin
  306.  *****************************************************************************/
  307. static void Close( vlc_object_t *p_this )
  308. {
  309.     aout_filter_t     *p_filter = (aout_filter_t *)p_this;
  310.     aout_filter_sys_t *p_sys = p_filter->p_sys;
  311.     /* Stop Goom Thread */
  312.     p_sys->p_thread->b_die = VLC_TRUE;
  313.     vlc_mutex_lock( &p_sys->p_thread->lock );
  314.     vlc_cond_signal( &p_sys->p_thread->wait );
  315.     vlc_mutex_unlock( &p_sys->p_thread->lock );
  316.     vlc_thread_join( p_sys->p_thread );
  317.     /* Free data */
  318.     vout_Request( p_filter, p_sys->p_thread->p_vout, 0, 0, 0, 0 );
  319.     vlc_mutex_destroy( &p_sys->p_thread->lock );
  320.     vlc_cond_destroy( &p_sys->p_thread->wait );
  321.     vlc_object_detach( p_sys->p_thread );
  322.     while( p_sys->p_thread->i_blocks-- )
  323.     {
  324.         block_Release( p_sys->p_thread->pp_blocks[p_sys->p_thread->i_blocks] );
  325.     }
  326.     vlc_object_destroy( p_sys->p_thread );
  327.     free( p_sys );
  328. }
  329. static char *TitleGet( vlc_object_t *p_this )
  330. {
  331.     char *psz_title = NULL;
  332.     input_thread_t *p_input =
  333.         vlc_object_find( p_this, VLC_OBJECT_INPUT, FIND_ANYWHERE );
  334.     if( p_input )
  335.     {
  336.         char *psz = strrchr( p_input->input.p_item->psz_uri, '/' );
  337.         if( psz )
  338.         {
  339.             psz++;
  340.         }
  341.         else
  342.         {
  343.             psz = p_input->input.p_item->psz_uri;
  344.         }
  345.         if( psz && *psz )
  346.         {
  347.             psz_title = strdup( psz );
  348.         }
  349.         vlc_object_release( p_input );
  350.     }
  351.     return psz_title;
  352. }