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

midi

开发平台:

Unix_Linux

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