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

多媒体

开发平台:

MultiPlatform

  1. /*****************************************************************************
  2.  * plugin.c:
  3.  *****************************************************************************
  4.  * Copyright (C) 2004 VideoLAN
  5.  * $Id: plugin.c 8261 2004-07-23 18:13:20Z gbazin $
  6.  *
  7.  * Authors: Cyril Deguet <asmax@videolan.org>
  8.  *          Implementation of the winamp plugin MilkDrop
  9.  *          based on projectM http://xmms-projectm.sourceforge.net
  10.  *          and SciVi http://xmms-scivi.sourceforge.net
  11.  *
  12.  * This program is free software; you can redistribute it and/or modify
  13.  * it under the terms of the GNU General Public License as published by
  14.  * the Free Software Foundation; either version 2 of the License, or
  15.  * (at your option) any later version.
  16.  *
  17.  * This program is distributed in the hope that it will be useful,
  18.  * but WITHOUT ANY WARRANTY; without even the implied warranty of
  19.  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
  20.  * GNU General Public License for more details.
  21.  *
  22.  * You should have received a copy of the GNU General Public License
  23.  * along with this program; if not, write to the Free Software
  24.  * Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA  02111, USA.
  25.  *****************************************************************************/
  26. /*****************************************************************************
  27.  * Preamble
  28.  *****************************************************************************/
  29. #include "plugin.h"
  30. #include "main.h"
  31. #include "PCM.h"
  32. #include "video_init.h"
  33. #include <GL/glu.h>
  34. #include <vlc/input.h>
  35. #include <vlc/vout.h>
  36. #include "aout_internal.h"
  37. /*****************************************************************************
  38.  * Module descriptor
  39.  *****************************************************************************/
  40. static int  Open         ( vlc_object_t * );
  41. static void Close        ( vlc_object_t * );
  42. vlc_module_begin();
  43.     set_description( _("GaLaktos visualization plugin") );
  44.     set_capability( "audio filter", 0 );
  45.     set_callbacks( Open, Close );
  46.     add_shortcut( "galaktos" );
  47. vlc_module_end();
  48. /*****************************************************************************
  49.  * Local prototypes
  50.  *****************************************************************************/
  51. typedef struct aout_filter_sys_t
  52. {
  53.     galaktos_thread_t *p_thread;
  54. } aout_filter_sys_t;
  55. static void DoWork   ( aout_instance_t *, aout_filter_t *, aout_buffer_t *,
  56.                        aout_buffer_t * );
  57. static void Thread   ( vlc_object_t * );
  58. static char *TitleGet( vlc_object_t * );
  59. extern GLuint RenderTargetTextureID;
  60. /*****************************************************************************
  61.  * Open: open a scope effect plugin
  62.  *****************************************************************************/
  63. static int Open( vlc_object_t *p_this )
  64. {
  65.     aout_filter_t     *p_filter = (aout_filter_t *)p_this;
  66.     aout_filter_sys_t *p_sys;
  67.     galaktos_thread_t *p_thread;
  68.     if ( p_filter->input.i_format != VLC_FOURCC('f','l','3','2' )
  69.          || p_filter->output.i_format != VLC_FOURCC('f','l','3','2') )
  70.     {
  71.         msg_Warn( p_filter, "Bad input or output format" );
  72.         return VLC_EGENERIC;
  73.     }
  74.     if ( !AOUT_FMTS_SIMILAR( &p_filter->input, &p_filter->output ) )
  75.     {
  76.         msg_Warn( p_filter, "input and output formats are not similar" );
  77.         return VLC_EGENERIC;
  78.     }
  79.     p_filter->pf_do_work = DoWork;
  80.     p_filter->b_in_place = 1;
  81.     /* Allocate structure */
  82.     p_sys = p_filter->p_sys = malloc( sizeof( aout_filter_sys_t ) );
  83.     /* Create galaktos thread */
  84.     p_sys->p_thread = p_thread =
  85.         vlc_object_create( p_filter, sizeof( galaktos_thread_t ) );
  86.     vlc_object_attach( p_thread, p_this );
  87. /*
  88.     var_Create( p_thread, "galaktos-width", VLC_VAR_INTEGER|VLC_VAR_DOINHERIT );
  89.     var_Get( p_thread, "galaktos-width", &width );
  90.     var_Create( p_thread, "galaktos-height", VLC_VAR_INTEGER|VLC_VAR_DOINHERIT );
  91.     var_Get( p_thread, "galaktos-height", &height );
  92. */
  93.     p_thread->i_cur_sample = 0;
  94.     bzero( p_thread->p_data, 2*2*512 );
  95.     p_thread->i_width = 600;
  96.     p_thread->i_height = 600;
  97.     p_thread->b_fullscreen = 0;
  98.     galaktos_init( p_thread );
  99.     p_thread->i_channels = aout_FormatNbChannels( &p_filter->input );
  100.     p_thread->psz_title = TitleGet( VLC_OBJECT( p_filter ) );
  101.     if( vlc_thread_create( p_thread, "galaktos update thread", Thread,
  102.                            VLC_THREAD_PRIORITY_LOW, VLC_FALSE ) )
  103.     {
  104.         msg_Err( p_filter, "cannot lauch galaktos thread" );
  105.         if( p_thread->psz_title ) free( p_thread->psz_title );
  106.         vlc_object_detach( p_thread );
  107.         vlc_object_destroy( p_thread );
  108.         free( p_sys );
  109.         return VLC_EGENERIC;
  110.     }
  111.     return VLC_SUCCESS;
  112. }
  113. /*****************************************************************************
  114.  * float to s16 conversion
  115.  *****************************************************************************/
  116. static inline int16_t FloatToInt16( float f )
  117. {
  118.     if( f >= 1.0 )
  119.         return 32767;
  120.     else if( f < -1.0 )
  121.         return -32768;
  122.     else
  123.         return (int16_t)( f * 32768.0 );
  124. }
  125. /*****************************************************************************
  126.  * DoWork: process samples buffer
  127.  *****************************************************************************
  128.  * This function queues the audio buffer to be processed by the galaktos thread
  129.  *****************************************************************************/
  130. static void DoWork( aout_instance_t * p_aout, aout_filter_t * p_filter,
  131.                     aout_buffer_t * p_in_buf, aout_buffer_t * p_out_buf )
  132. {
  133.     int i_samples;
  134.     int i_channels;
  135.     float *p_float;
  136.     galaktos_thread_t *p_thread = p_filter->p_sys->p_thread;
  137.     p_float = (float *)p_in_buf->p_buffer;
  138.     i_channels = p_thread->i_channels;
  139.     p_out_buf->i_nb_samples = p_in_buf->i_nb_samples;
  140.     p_out_buf->i_nb_bytes = p_in_buf->i_nb_bytes;
  141.     for( i_samples = p_in_buf->i_nb_samples; i_samples > 0; i_samples-- )
  142.     {
  143.         int i_cur_sample = p_thread->i_cur_sample;
  144.         p_thread->p_data[0][i_cur_sample] = FloatToInt16( p_float[0] );
  145.         if( i_channels > 1 )
  146.         {
  147.             p_thread->p_data[1][i_cur_sample] = FloatToInt16( p_float[1] );
  148.         }
  149.         p_float += i_channels;
  150.         if( ++(p_thread->i_cur_sample) == 512 )
  151.         {
  152.             addPCM( p_thread->p_data );
  153.             p_thread->i_cur_sample = 0;
  154.         }
  155.     }
  156. }
  157. /*****************************************************************************
  158.  * Thread:
  159.  *****************************************************************************/
  160. static void Thread( vlc_object_t *p_this )
  161. {
  162.     galaktos_thread_t *p_thread = (galaktos_thread_t*)p_this;
  163.     int count=0;
  164.     double realfps=0,fpsstart=0;
  165.     int timed=0;
  166.     int timestart=0;
  167.     int mspf=0;
  168.     /* Get on OpenGL provider */
  169.     p_thread->p_opengl =
  170.         (vout_thread_t *)vlc_object_create( p_this, VLC_OBJECT_OPENGL );
  171.     if( p_thread->p_opengl == NULL )
  172.     {
  173.         msg_Err( p_thread, "out of memory" );
  174.         return;
  175.     }
  176.     vlc_object_attach( p_thread->p_opengl, p_this );
  177.     p_thread->p_opengl->i_window_width = p_thread->i_width;
  178.     p_thread->p_opengl->i_window_height = p_thread->i_height;
  179.     p_thread->p_opengl->render.i_width = p_thread->i_width;
  180.     p_thread->p_opengl->render.i_height = p_thread->i_width;
  181.     p_thread->p_opengl->render.i_aspect = VOUT_ASPECT_FACTOR;
  182.     p_thread->p_opengl->b_scale = VLC_TRUE;
  183.     p_thread->p_module =
  184.         module_Need( p_thread->p_opengl, "opengl provider", NULL, 0 );
  185.     if( p_thread->p_module == NULL )
  186.     {
  187.         msg_Err( p_thread, "No OpenGL provider found" );
  188.         vlc_object_detach( p_thread->p_opengl );
  189.         vlc_object_destroy( p_thread->p_opengl );
  190.         return;
  191.     }
  192.     p_thread->p_opengl->pf_init( p_thread->p_opengl );
  193.     setup_opengl( p_thread->i_width, p_thread->i_height );
  194.     CreateRenderTarget(512, &RenderTargetTextureID, NULL);
  195.     timestart=mdate()/1000;
  196.     while( !p_thread->b_die )
  197.     {
  198.         mspf = 1000 / 60;
  199.         if( galaktos_update( p_thread ) == 1 )
  200.         {
  201.             p_thread->b_die = 1;
  202.         }
  203.         if( p_thread->psz_title )
  204.         {
  205.             free( p_thread->psz_title );
  206.             p_thread->psz_title = NULL;
  207.         }
  208.         if (++count%100==0)
  209.         {
  210.             realfps=100/((mdate()/1000-fpsstart)/1000);
  211.  //           printf("%fn",realfps);
  212.             fpsstart=mdate()/1000;
  213.         }
  214.         //framerate limiter
  215.         timed=mspf-(mdate()/1000-timestart);
  216.       //   printf("%d,%dn",time,mspf);
  217.         if (timed>0) msleep(1000*timed);
  218.     //     printf("Limiter %dn",(mdate()/1000-timestart));
  219.         timestart=mdate()/1000;
  220.     }
  221.     /* Free the openGL provider */
  222.     module_Unneed( p_thread->p_opengl, p_thread->p_module );
  223.     vlc_object_detach( p_thread->p_opengl );
  224.     vlc_object_destroy( p_thread->p_opengl );
  225. }
  226. /*****************************************************************************
  227.  * Close: close the plugin
  228.  *****************************************************************************/
  229. static void Close( vlc_object_t *p_this )
  230. {
  231.     aout_filter_t     *p_filter = (aout_filter_t *)p_this;
  232.     aout_filter_sys_t *p_sys = p_filter->p_sys;
  233.     /* Stop galaktos Thread */
  234.     p_sys->p_thread->b_die = VLC_TRUE;
  235.     galaktos_done( p_sys->p_thread );
  236.     vlc_thread_join( p_sys->p_thread );
  237.     /* Free data */
  238.     vlc_object_detach( p_sys->p_thread );
  239.     vlc_object_destroy( p_sys->p_thread );
  240.     free( p_sys );
  241. }
  242. static char *TitleGet( vlc_object_t *p_this )
  243. {
  244.     char *psz_title = NULL;
  245.     input_thread_t *p_input =
  246.         vlc_object_find( p_this, VLC_OBJECT_INPUT, FIND_ANYWHERE );
  247.     if( p_input )
  248.     {
  249.         char *psz = strrchr( p_input->input.p_item->psz_uri, '/' );
  250.         if( psz )
  251.         {
  252.             psz++;
  253.         }
  254.         else
  255.         {
  256.             psz = p_input->input.p_item->psz_uri;
  257.         }
  258.         if( psz && *psz )
  259.         {
  260.             psz_title = strdup( psz );
  261.         }
  262.         vlc_object_release( p_input );
  263.     }
  264.     return psz_title;
  265. }