CVSROOT: /sources/gnash Module name: gnash Changes by: Sandro Santilli <strk> 07/05/24 13:48:43
Modified files: . : ChangeLog backend : sound_handler_gst.cpp Log message: * backend/sound_handler_gst.cpp: warn only once about fluendo plugin being too old. CVSWeb URLs: http://cvs.savannah.gnu.org/viewcvs/gnash/ChangeLog?cvsroot=gnash&r1=1.3340&r2=1.3341 http://cvs.savannah.gnu.org/viewcvs/gnash/backend/sound_handler_gst.cpp?cvsroot=gnash&r1=1.45&r2=1.46 Patches: Index: ChangeLog =================================================================== RCS file: /sources/gnash/gnash/ChangeLog,v retrieving revision 1.3340 retrieving revision 1.3341 diff -u -b -r1.3340 -r1.3341 --- ChangeLog 24 May 2007 13:42:50 -0000 1.3340 +++ ChangeLog 24 May 2007 13:48:43 -0000 1.3341 @@ -1,5 +1,7 @@ 2007-05-24 Sandro Santilli <[EMAIL PROTECTED]> + * backend/sound_handler_gst.cpp: warn only once about fluendo plugin + being too old. * server/parser/shape_character_def.cpp (read): Fix typo reporting false malformations in the SWF. Index: backend/sound_handler_gst.cpp =================================================================== RCS file: /sources/gnash/gnash/backend/sound_handler_gst.cpp,v retrieving revision 1.45 retrieving revision 1.46 diff -u -b -r1.45 -r1.46 --- backend/sound_handler_gst.cpp 24 May 2007 08:48:02 -0000 1.45 +++ backend/sound_handler_gst.cpp 24 May 2007 13:48:43 -0000 1.46 @@ -20,7 +20,7 @@ // Based on sound_handler_sdl.cpp by Thatcher Ulrich http://tulrich.com 2003 // which has been donated to the Public Domain. -/* $Id: sound_handler_gst.cpp,v 1.45 2007/05/24 08:48:02 strk Exp $ */ +/* $Id: sound_handler_gst.cpp,v 1.46 2007/05/24 13:48:43 strk Exp $ */ #ifdef HAVE_CONFIG_H #include "config.h" @@ -333,8 +333,13 @@ gst_element->decoder = gst_element_factory_make ("flump3dec", NULL); if (gst_element->decoder != NULL && !gst_default_registry_check_feature_version("flump3dec", 0, 10, 4)) { + static bool warned=false; + if ( ! warned ) + { // I keep getting these messages even if I hear sound... too much paranoia ? gnash::log_debug(_("This version of fluendos mp3 plugin does not support flash streaming sounds, please upgrade to version 0.10.4 or higher")); + warned=true; + } } } // Check if the element was correctly created _______________________________________________ Gnash-commit mailing list Gnash-commit@gnu.org http://lists.gnu.org/mailman/listinfo/gnash-commit