From: pabs3 Date: Wed, 5 Nov 2008 09:37:54 +0000 (+0000) Subject: In the ffmpeg importer, if we successfully got a frame, do not say that we didn't... X-Git-Url: https://git.pterodactylus.net/?a=commitdiff_plain;ds=sidebyside;h=ac9f1942ee6347c80de853354d0e5e9890ebf98c;p=synfig.git In the ffmpeg importer, if we successfully got a frame, do not say that we didn't get the frame. git-svn-id: https://synfig.svn.sourceforge.net/svnroot/synfig@2151 1f10aa63-cdf2-0310-b900-c93c546f37ac --- diff --git a/synfig-core/trunk/src/modules/mod_ffmpeg/mptr_ffmpeg.cpp b/synfig-core/trunk/src/modules/mod_ffmpeg/mptr_ffmpeg.cpp index d1eb7aa..6a4c3f6 100644 --- a/synfig-core/trunk/src/modules/mod_ffmpeg/mptr_ffmpeg.cpp +++ b/synfig-core/trunk/src/modules/mod_ffmpeg/mptr_ffmpeg.cpp @@ -260,5 +260,5 @@ ffmpeg_mptr::get_frame(synfig::Surface &surface,Time time, synfig::ProgressCallb } surface=frame; - return false; + return true; }