]> git.sesse.net Git - vlc/blobdiff - modules/visualization/projectm.cpp
dvdnav: add Demux submodule
[vlc] / modules / visualization / projectm.cpp
index 40a53ebc836a9d7d60eb8a0f7bbb0456f64796da..9d2cf537baa86110b847c072345eb7fb6a7b9e66 100644 (file)
@@ -1,25 +1,25 @@
 /*****************************************************************************
  * projectm.cpp: visualization module based on libprojectM
  *****************************************************************************
- * Copyright © 2009-2011 the VideoLAN team
+ * Copyright © 2009-2011 VLC authors and VideoLAN
  * $Id$
  *
  * Authors: Rémi Duraffort <ivoire@videolan.org>
  *          Laurent Aimar
  *
- * This program is free software; you can redistribute it and/or modify it
- * under the terms of the GNU General Public License as published by the Free
- * Software Foundation; either version 2 of the License, or (at your option)
- * any later version.
 * This program is free software; you can redistribute it and/or modify it
+ * under the terms of the GNU Lesser General Public License as published by
+ * the Free Software Foundation; either version 2.1 of the License, or
+ * (at your option) any later version.
  *
- * This program is distributed in the hope that it will be useful, but WITHOUT
- * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
- * FITNESS FOR A PARTICULAR PURPOSE.  See the GNU General Public License for
- * more details.
+ * This program is distributed in the hope that it will be useful,
+ * but WITHOUT ANY WARRANTY; without even the implied warranty of
+ * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
+ * GNU Lesser General Public License for more details.
  *
- * You should have received a copy of the GNU General Public License along with
- * this program; if not, write to the Free Software Foundation, Inc., 51
- * Franklin Street, Fifth Floor, Boston MA 02110-1301, USA.
+ * You should have received a copy of the GNU Lesser General Public License
+ * along with this program; if not, write to the Free Software Foundation,
+ * Inc., 51 Franklin Street, Fifth Floor, Boston MA 02110-1301, USA.
  *****************************************************************************/
 
 #ifdef HAVE_CONFIG_H
@@ -32,8 +32,7 @@
 #include <vlc_common.h>
 #include <vlc_plugin.h>
 #include <vlc_aout.h>
-#include <vlc_vout.h>
-#include <vlc_vout_wrapper.h>
+#include <vlc_vout_window.h>
 #include <vlc_opengl.h>
 #include <vlc_filter.h>
 #include <vlc_rand.h>
@@ -74,7 +73,7 @@ static void Close        ( vlc_object_t * );
 #define TEXTURE_TEXT N_("Texture size")
 #define TEXTURE_LONGTEXT N_("The size of the texture, in pixels.")
 
-#ifdef WIN32
+#ifdef _WIN32
 # define FONT_PATH      "C:\\WINDOWS\\Fonts\\arial.ttf"
 # define FONT_PATH_MENU "C:\\WINDOWS\\Fonts\\arial.ttf"
 # define PRESET_PATH    NULL
@@ -133,16 +132,9 @@ struct filter_sys_t
 {
     /* */
     vlc_thread_t thread;
-    vlc_sem_t    ready;
-    bool         b_error;
 
     /* Opengl */
-    vout_thread_t  *p_vout;
-    vout_display_t *p_vd;
-
-    /* Window size */
-    int i_width;
-    int i_height;
+    vlc_gl_t  *gl;
 
     /* audio info */
     int i_channels;
@@ -174,25 +166,29 @@ static int Open( vlc_object_t * p_this )
         return VLC_ENOMEM;
 
     /* Create the object for the thread */
-    vlc_sem_init( &p_sys->ready, 0 );
-    p_sys->b_error       = false;
     p_sys->b_quit        = false;
-    p_sys->i_width       = var_InheritInteger( p_filter, "projectm-width" );
-    p_sys->i_height      = var_InheritInteger( p_filter, "projectm-height" );
     p_sys->i_channels    = aout_FormatNbChannels( &p_filter->fmt_in.audio );
     vlc_mutex_init( &p_sys->lock );
     p_sys->p_buffer      = NULL;
     p_sys->i_buffer_size = 0;
     p_sys->i_nb_samples  = 0;
 
-    /* Create the thread */
-    if( vlc_clone( &p_sys->thread, Thread, p_filter, VLC_THREAD_PRIORITY_LOW ) )
+    /* Create the OpenGL context */
+    vout_window_cfg_t cfg;
+
+    memset(&cfg, 0, sizeof (cfg));
+    cfg.width = var_CreateGetInteger( p_filter, "projectm-width" );
+    cfg.height = var_CreateGetInteger( p_filter, "projectm-height" );
+
+    p_sys->gl = vlc_gl_surface_Create( VLC_OBJECT(p_filter), &cfg, NULL );
+    if( p_sys->gl == NULL )
         goto error;
 
-    vlc_sem_wait( &p_sys->ready );
-    if( p_sys->b_error )
+    /* Create the thread */
+    if( vlc_clone( &p_sys->thread, Thread, p_filter,
+                   VLC_THREAD_PRIORITY_LOW ) )
     {
-        vlc_join( p_sys->thread, NULL );
+        vlc_gl_surface_Destroy( p_sys->gl );
         goto error;
     }
 
@@ -202,7 +198,7 @@ static int Open( vlc_object_t * p_this )
     return VLC_SUCCESS;
 
 error:
-    vlc_sem_destroy( &p_sys->ready );
+    vlc_mutex_destroy( &p_sys->lock );
     free (p_sys );
     return VLC_EGENERIC;
 }
@@ -227,7 +223,7 @@ static void Close( vlc_object_t *p_this )
     vlc_join( p_sys->thread, NULL );
 
     /* Free the ressources */
-    vlc_sem_destroy( &p_sys->ready );
+    vlc_gl_surface_Destroy( p_sys->gl );
     vlc_mutex_destroy( &p_sys->lock );
     free( p_sys->p_buffer );
     free( p_sys );
@@ -265,22 +261,6 @@ static block_t *DoWork( filter_t *p_filter, block_t *p_in_buf )
     return p_in_buf;
 }
 
-/**
- * Variable callback for the dummy vout
- */
-static int VoutCallback( vlc_object_t *p_vout, char const *psz_name,
-                         vlc_value_t oldv, vlc_value_t newv, void *p_data )
-{
-    VLC_UNUSED( p_vout ); VLC_UNUSED( oldv );
-    vout_display_t *p_vd = (vout_display_t*)p_data;
-
-    if( !strcmp(psz_name, "fullscreen") )
-    {
-        vout_SetDisplayFullscreen( p_vd, newv.b_bool );
-    }
-    return VLC_SUCCESS;
-}
-
 /**
  * ProjectM update thread which do the rendering
  * @param p_this: the p_thread object
@@ -289,11 +269,7 @@ static void *Thread( void *p_data )
 {
     filter_t  *p_filter = (filter_t*)p_data;
     filter_sys_t *p_sys = p_filter->p_sys;
-
-    video_format_t fmt;
-    vlc_gl_t *gl;
-    unsigned int i_last_width  = 0;
-    unsigned int i_last_height = 0;
+    vlc_gl_t *gl = p_sys->gl;
     locale_t loc;
     locale_t oldloc;
 
@@ -307,49 +283,7 @@ static void *Thread( void *p_data )
     projectM::Settings settings;
 #endif
 
-    vlc_savecancel();
-
-    /* Create the openGL provider */
-    p_sys->p_vout =
-        (vout_thread_t *)vlc_object_create( p_filter, sizeof(vout_thread_t) );
-    if( !p_sys->p_vout )
-        goto error;
-
-    /* */
-    video_format_Init( &fmt, 0 );
-    video_format_Setup( &fmt, VLC_CODEC_RGB32,
-                        p_sys->i_width, p_sys->i_height, 0, 1 );
-    fmt.i_sar_num = 1;
-    fmt.i_sar_den = 1;
-
-    vout_display_state_t state;
-    memset( &state, 0, sizeof(state) );
-    state.cfg.display.sar.num = 1;
-    state.cfg.display.sar.den = 1;
-    state.cfg.is_display_filled = true;
-    state.cfg.zoom.num = 1;
-    state.cfg.zoom.den = 1;
-    state.sar.num = 1;
-    state.sar.den = 1;
-
-    p_sys->p_vd = vout_NewDisplay( p_sys->p_vout, &fmt, &state, "opengl",
-                                   300000, 1000000 );
-    if( !p_sys->p_vd )
-    {
-        vlc_object_release( p_sys->p_vout );
-        goto error;
-    }
-    var_Create( p_sys->p_vout, "fullscreen", VLC_VAR_BOOL );
-    var_AddCallback( p_sys->p_vout, "fullscreen", VoutCallback, p_sys->p_vd );
-
-    gl = vout_GetDisplayOpengl( p_sys->p_vd );
-    if( !gl )
-    {
-        var_DelCallback( p_sys->p_vout, "fullscreen", VoutCallback, p_sys->p_vd );
-        vout_DeleteDisplay( p_sys->p_vd, NULL );
-        vlc_object_release( p_sys->p_vout );
-        goto error;
-    }
+    vlc_gl_MakeCurrent( gl );
 
     /* Work-around the projectM locale bug */
     loc = newlocale (LC_NUMERIC_MASK, "C", NULL);
@@ -362,7 +296,7 @@ static void *Thread( void *p_data )
     free( psz_config );
 #else
     psz_preset_path = var_InheritString( p_filter, "projectm-preset-path" );
-#ifdef WIN32
+#ifdef _WIN32
     if ( psz_preset_path == NULL )
     {
         char *psz_data_path = config_GetDataDir();
@@ -378,8 +312,8 @@ static void *Thread( void *p_data )
     settings.meshY                = var_InheritInteger( p_filter, "projectm-meshy" );
     settings.fps                  = 35;
     settings.textureSize          = var_InheritInteger( p_filter, "projectm-texture-size" );
-    settings.windowWidth          = p_sys->i_width;
-    settings.windowHeight         = p_sys->i_height;
+    settings.windowWidth          = var_InheritInteger( p_filter, "projectm-width" );
+    settings.windowHeight         = var_CreateGetInteger( p_filter, "projectm-height" );
     settings.presetURL            = psz_preset_path;
     settings.titleFontURL         = psz_title_font;
     settings.menuFontURL          = psz_menu_font;
@@ -401,8 +335,6 @@ static void *Thread( void *p_data )
     p_sys->p_buffer = (float*)calloc( p_sys->i_buffer_size,
                                       sizeof( float ) );
 
-    vlc_sem_post( &p_sys->ready );
-
     /* Choose a preset randomly or projectM will always show the first one */
     if ( p_projectm->getPlaylistSize() > 0 )
         p_projectm->selectPreset( (unsigned)vlc_mrand48() % p_projectm->getPlaylistSize() );
@@ -411,19 +343,13 @@ static void *Thread( void *p_data )
     for( ;; )
     {
         const mtime_t i_deadline = mdate() + CLOCK_FREQ / 50; /* 50 fps max */
+
         /* Manage the events */
-        vout_ManageDisplay( p_sys->p_vd, true );
-        if( p_sys->p_vd->cfg->display.width  != i_last_width ||
-            p_sys->p_vd->cfg->display.height != i_last_height )
-        {
-            /* FIXME it is not perfect as we will have black bands */
-            vout_display_place_t place;
-            vout_display_PlacePicture( &place, &p_sys->p_vd->source, p_sys->p_vd->cfg, false );
-            p_projectm->projectM_resetGL( place.width, place.height );
+        unsigned width, height;
+        bool quit;
 
-            i_last_width  = p_sys->p_vd->cfg->display.width;
-            i_last_height = p_sys->p_vd->cfg->display.height;
-        }
+        if( vlc_gl_surface_CheckSize( gl, &width, &height ) )
+            p_projectm->projectM_resetGL( width, height );
 
         /* Render the image and swap the buffers */
         vlc_mutex_lock( &p_sys->lock );
@@ -433,23 +359,12 @@ static void *Thread( void *p_data )
                                             p_sys->i_nb_samples );
             p_sys->i_nb_samples = 0;
         }
-        if( p_sys->b_quit )
-        {
-            vlc_mutex_unlock( &p_sys->lock );
-
-            delete p_projectm;
-            var_DelCallback( p_sys->p_vout, "fullscreen", VoutCallback, p_sys->p_vd );
-            vout_DeleteDisplay( p_sys->p_vd, NULL );
-            vlc_object_release( p_sys->p_vout );
-            if (loc != (locale_t)0)
-            {
-                uselocale (oldloc);
-                freelocale (loc);
-            }
-            return NULL;
-        }
+        quit = p_sys->b_quit;
         vlc_mutex_unlock( &p_sys->lock );
 
+        if( quit )
+            break;
+
         p_projectm->renderFrame();
 
         /* */
@@ -461,11 +376,15 @@ static void *Thread( void *p_data )
             vlc_gl_Unlock( gl );
         }
     }
-    abort();
 
-error:
-    p_sys->b_error = true;
-    vlc_sem_post( &p_sys->ready );
+    delete p_projectm;
+
+    if (loc != (locale_t)0)
+    {
+        uselocale (oldloc);
+        freelocale (loc);
+    }
+
+    vlc_gl_ReleaseCurrent( gl );
     return NULL;
 }
-