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

midi

开发平台:

Unix_Linux

  1. /*****************************************************************************
  2.  * plugin.c:
  3.  *****************************************************************************
  4.  * Copyright (C) 2004 the VideoLAN team
  5.  * $Id: 285ae50995c6af3acc9da9ebe776e751d0b90d05 $
  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., 51 Franklin Street, Fifth Floor, Boston MA 02110-1301, 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_playlist.h>
  36. #include <vlc_plugin.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( N_("GaLaktos visualization") )
  44.     set_capability( "visualization", 0 )
  45.     set_callbacks( Open, Close )
  46.     add_shortcut( "galaktos" )
  47. vlc_module_end ()
  48. /*****************************************************************************
  49.  * Local prototypes
  50.  *****************************************************************************/
  51. struct aout_filter_sys_t
  52. {
  53.     galaktos_thread_t *p_thread;
  54. };
  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 ) )
  103.     {
  104.         msg_Err( p_filter, "cannot lauch galaktos thread" );
  105.         free( p_thread->psz_title );
  106.         vlc_object_detach( p_thread );
  107.         vlc_object_release( 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.     int canc = vlc_savecancel ();
  169.     /* Get on OpenGL provider */
  170.     p_thread->p_opengl =
  171.         (vout_thread_t *)vlc_object_create( p_this, sizeof( vout_thread_t ) );
  172.     if( p_thread->p_opengl == NULL )
  173.     {
  174.         vlc_restorecancel (canc);
  175.         return NULL;
  176.     }
  177.     vlc_object_attach( p_thread->p_opengl, p_this );
  178.     /* Initialize vout parameters */
  179.     vout_InitFormat( &p_thread->p_opengl->fmt_in,
  180.                      VLC_FOURCC('R','V','3','2'),
  181.                      p_thread->i_width, p_thread->i_height, 1 );
  182.     p_thread->p_opengl->i_window_width = p_thread->i_width;
  183.     p_thread->p_opengl->i_window_height = p_thread->i_height;
  184.     p_thread->p_opengl->render.i_width = p_thread->i_width;
  185.     p_thread->p_opengl->render.i_height = p_thread->i_width;
  186.     p_thread->p_opengl->render.i_aspect = VOUT_ASPECT_FACTOR;
  187.     p_thread->p_opengl->b_fullscreen = false;
  188.     p_thread->p_opengl->i_alignment = 0;
  189.     p_thread->p_opengl->fmt_in.i_sar_num = 1;
  190.     p_thread->p_opengl->fmt_in.i_sar_den = 1;
  191.     p_thread->p_opengl->fmt_render = p_thread->p_opengl->fmt_in;
  192.     p_thread->p_module =
  193.         module_need( p_thread->p_opengl, "opengl provider", NULL, false );
  194.     if( p_thread->p_module == NULL )
  195.     {
  196.         msg_Err( p_thread, "unable to initialize OpenGL" );
  197.         vlc_object_detach( p_thread->p_opengl );
  198.         vlc_object_release( p_thread->p_opengl );
  199.         vlc_restorecancel (canc);
  200.         return NULL;
  201.     }
  202.     p_thread->p_opengl->pf_init( p_thread->p_opengl );
  203.     setup_opengl( p_thread->i_width, p_thread->i_height );
  204.     CreateRenderTarget(512, &RenderTargetTextureID, NULL);
  205.     timestart=mdate()/1000;
  206.     while( vlc_object_alive (p_thread) )
  207.     {
  208.         mspf = 1000 / 60;
  209.         if( galaktos_update( p_thread ) == 1 )
  210.         {
  211.             vlc_object_kill( p_thread );
  212.         }
  213.         free( p_thread->psz_title );
  214.         p_thread->psz_title = NULL;
  215.         mtime_t now = mdate();
  216.         if (++count%100==0)
  217.         {
  218.             realfps=100/((now/1000-fpsstart)/1000);
  219.  //           printf("%fn",realfps);
  220.             fpsstart=now/1000;
  221.         }
  222.         //framerate limiter
  223.         timed=mspf-(now/1000-timestart);
  224.       //   printf("%d,%dn",time,mspf);
  225.         if (timed>0) msleep(1000*timed);
  226.     //     printf("Limiter %dn",(mdate()/1000-timestart));
  227.         timestart=mdate()/1000;
  228.     }
  229.     /* Free the openGL provider */
  230.     module_unneed( p_thread->p_opengl, p_thread->p_module );
  231.     vlc_object_detach( p_thread->p_opengl );
  232.     vlc_object_release( p_thread->p_opengl );
  233.     vlc_restorecancel (canc);
  234.     return NULL;
  235. }
  236. /*****************************************************************************
  237.  * Close: close the plugin
  238.  *****************************************************************************/
  239. static void Close( vlc_object_t *p_this )
  240. {
  241.     aout_filter_t     *p_filter = (aout_filter_t *)p_this;
  242.     aout_filter_sys_t *p_sys = p_filter->p_sys;
  243.     /* Stop galaktos Thread */
  244.     vlc_object_kill( p_sys->p_thread );
  245.     galaktos_done( p_sys->p_thread );
  246.     vlc_thread_join( p_sys->p_thread );
  247.     /* Free data */
  248.     vlc_object_detach( p_sys->p_thread );
  249.     vlc_object_release( p_sys->p_thread );
  250.     free( p_sys );
  251. }
  252. static char *TitleGet( vlc_object_t *p_this )
  253. {
  254.     char *psz_title = NULL;
  255.     input_thread_t *p_input =
  256.         vlc_object_find( p_this, VLC_OBJECT_INPUT, FIND_ANYWHERE );
  257.     if( p_input )
  258.     {
  259.         char *psz_orig = input_item_GetURI( input_GetItem( p_input ) );
  260.         char *psz = strrchr( psz_orig, '/' );
  261.         if( psz )
  262.         {
  263.             psz++;
  264.         }
  265.         else
  266.         {
  267.             psz = psz_orig;
  268.         }
  269.         if( psz && *psz )
  270.         {
  271.             psz_title = strdup( psz );
  272.         }
  273.         free( psz_orig );
  274.         vlc_object_release( p_input );
  275.     }
  276.     return psz_title;
  277. }