gnash-commit
[Top][All Lists]
Advanced

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

[Gnash-commit] /srv/bzr/gnash/trunk r9914: Minor comment and debug clean


From: Sandro Santilli
Subject: [Gnash-commit] /srv/bzr/gnash/trunk r9914: Minor comment and debug cleanups
Date: Fri, 03 Oct 2008 15:38:43 +0200
User-agent: Bazaar (1.5)

------------------------------------------------------------
revno: 9914
committer: Sandro Santilli <address@hidden>
branch nick: trunk
timestamp: Fri 2008-10-03 15:38:43 +0200
message:
  Minor comment and debug cleanups
modified:
  libmedia/ffmpeg/MediaParserFfmpeg.cpp
=== modified file 'libmedia/ffmpeg/MediaParserFfmpeg.cpp'
--- a/libmedia/ffmpeg/MediaParserFfmpeg.cpp     2008-10-03 13:29:38 +0000
+++ b/libmedia/ffmpeg/MediaParserFfmpeg.cpp     2008-10-03 13:38:43 +0000
@@ -227,10 +227,12 @@
        //log_debug("av_read_frame returned %d", rc);
        if ( rc < 0 )
        {
-               log_error(_("MediaParserFfmpeg::parseNextChunk: Problems 
parsing next frame"));
-               // Should we set parsingComplete here ?
-               _parsingComplete=true;
-               return false;
+        log_error(_("MediaParserFfmpeg::parseNextFrame: "
+            "Problems parsing next frame "
+            "(av_read_frame returned %d)."
+            " We'll consider the stream fully parsed."), rc);
+        _parsingComplete=true; // No point in parsing over
+        return false;
        }
 
        bool ret=false;


reply via email to

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