gnash-commit
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

[Gnash-commit] gnash/server/swf tag_loaders.cpp


From: Sandro Santilli
Subject: [Gnash-commit] gnash/server/swf tag_loaders.cpp
Date: Wed, 19 Mar 2008 22:20:27 +0000

CVSROOT:        /sources/gnash
Module name:    gnash
Changes by:     Sandro Santilli <strk>  08/03/19 22:20:27

Modified files:
        server/swf     : tag_loaders.cpp 

Log message:
        warn only once about unimplemented MP3 delay seek

CVSWeb URLs:
http://cvs.savannah.gnu.org/viewcvs/gnash/server/swf/tag_loaders.cpp?cvsroot=gnash&r1=1.190&r2=1.191

Patches:
Index: tag_loaders.cpp
===================================================================
RCS file: /sources/gnash/gnash/server/swf/tag_loaders.cpp,v
retrieving revision 1.190
retrieving revision 1.191
diff -u -b -r1.190 -r1.191
--- tag_loaders.cpp     19 Mar 2008 21:54:35 -0000      1.190
+++ tag_loaders.cpp     19 Mar 2008 22:20:27 -0000      1.191
@@ -1247,6 +1247,7 @@
        if (format == media::AUDIO_CODEC_MP3) {
                in->ensureBytes(2);
                boost::int16_t  delay_seek = in->read_s16();    // FIXME - not 
implemented/used
+               //
                // The DelaySeek field has the following meaning:
                // * If this value is positive, the player seeks this number of
                //   samples into the sound block before the sound is played.
@@ -1261,7 +1262,8 @@
                //
                // quoted from
                // 
http://www-lehre.informatik.uni-osnabrueck.de/~fbstark/diplom/docs/swf/Sounds.htm
-               if ( delay_seek ) log_unimpl("MP3 delay seek %d", delay_seek);
+               //
+               ONCE ( if ( delay_seek ) log_unimpl("MP3 delay seek") );
        }
 
        IF_VERBOSE_PARSE




reply via email to

[Prev in Thread] Current Thread [Next in Thread]