]> git.sesse.net Git - vlc/blobdiff - mozilla/vlcpeer.cpp
vlcshell.cpp: fixed plugin 'autoplay'
[vlc] / mozilla / vlcpeer.cpp
index 9c2a0172aa8fd84498641ac8e7e7916ae57b1781..699f626608d048d55d605e0f0331628c5c5e0d51 100644 (file)
@@ -1,7 +1,7 @@
 /*****************************************************************************
  * vlcpeer.cpp: scriptable peer descriptor
  *****************************************************************************
- * Copyright (C) 2002 VideoLAN
+ * Copyright (C) 2002-2005 the VideoLAN team
  * $Id$
  *
  * Authors: Samuel Hocevar <sam@zoy.org>
@@ -18,7 +18,7 @@
  *
  * 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., 59 Temple Place - Suite 330, Boston, MA  02111, USA.
+ * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston MA 02110-1301, USA.
  *****************************************************************************/
 
 /*****************************************************************************
@@ -167,9 +167,7 @@ NS_IMETHODIMP VlcPeer::Get_int_variable( const char *psz_var, PRInt64 *result )
     vlc_value_t val;
     if( p_plugin )
     {
-        fprintf(stderr, "Choppage de %s\n", psz_var );
         VLC_VariableGet( p_plugin->i_vlc, psz_var, &val );
-        fprintf(stderr, "Valeur %i\n", val.i_int );
         *result = (PRInt64)val.i_int;
     }
     return NS_OK;
@@ -191,7 +189,6 @@ NS_IMETHODIMP VlcPeer::Get_str_variable( const char *psz_var, char **result )
     vlc_value_t val;
     if( p_plugin )
     {
-        fprintf(stderr, "Choppage de %s\n", psz_var );
         VLC_VariableGet( p_plugin->i_vlc, psz_var, &val );
         if( val.psz_string )
         {