Welcome to mirror list, hosted at ThFree Co, Russian Federation.

git.blender.org/blender.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
AgeCommit message (Collapse)Author
2008-03-23added support for linux on pa-riscStefan Gartner
2008-02-03More fixes for gcc warnings.Ken Hughes
2007-12-25=Scons ffmpeg update and avi fix=Joseph Eagar
Updated scons to work with the ffmpeg binaries in lib/windows/gcc again. Also fixed a bug reported by Debolaz on irc. Blender's internal avi reading (which can only read simple formats like motion jpeg) was telling the video code it could read all avis, without checking their codec. To fix this, I copied AVI_open_movie(), and modified it to to replace AVI_is_avi(). Now it properly checks the codec, and validates the header.
2007-10-21== Core ==Peter Schlaile
This adds fractional FPS support to blender and should finally make NTSC work correctly. NTSC has an FPS of 30.0/1.001 which is approximately 29.97 FPS. Therefore, it is not enough to simply make frs_sec a float, since you can't represent this accurately enough. I added a seperate variable frs_sec_base and FPS is now frs_sec / frs_sec_base. I changed all the places, where frs_sec was used to my best knowledge. For convenience sake, I added several macros, that should make life easier in the future: FRA2TIME(a) : convert frame number to a double precision time in seconds TIME2FRA(a) : the same in the opposite direction FPS : return current FPS as a double precision number (last resort) This closes bug #6715 Standard framerates not supported / breaks sync -- 23.967 29.967 etc. https://projects.blender.org/tracker/?func=detail&aid=6715&group_id=9&atid=125 Please give this heavy testing with NTSC files, quicktime in/export and the python interface. Errors are most probably only spotted on longer timelines, so that is also important. The patch was tested by Troy Sobotka and me, so it most probably should work out of the box, but wider testing is important, since errors are very subtle. Enjoy!
2007-02-13This fixes a bug in the mplayer bug tracker ;)Kent Mein
http://bugzilla.mplayerhq.hu/show_bug.cgi?id=642 Help provided by Reimar Doeffing. It removes two special cases which were creating empty huffman tables. So videos would play all black in players that were working correctly and looking at the tables if they exist. I also deleted commented out malloc statements that seem to be working just fine(they were replaced with MEM_mallocN statements). If people need them they can just look at cvs to see how they were done before. I also removed an empty else statement. (This fix does not fix the black bar in the sequencer with blender made avi's but I hope to have a fix for that later today) Kent
2006-06-06Made it so avi code handles "dropped frames"Kent Mein
some avi's have 0 sized chunks that we were not handling properly. (Need to basically rewind the avi to previous frame in this case) http://www.cs.umn.edu/~mein/blender/avi/examp.avi has 25 frames, 4,7 and 9 are "dropped frames" blender use to crash on these now it displays the frame before it assuming there is one. Kent
2006-01-25Orange:Ton Roosendaal
- Missing free in AVI writing - time counter for animation render wasn't reset to zero on successive renders.
2005-03-23a fix for: ↵Kent Mein
https://projects.blender.org/tracker/index.php?func=detail&aid=1173&group_id=9&atid=126 blender now does a little more homework to figure out what type of avi file is being loaded. Kent
2005-03-09big warning hunt commitJean-Luc Peurière
lot of casts, added prototypes, missing includes and some true errors
2002-12-27Removed the config.h thing from the .h's in the source dir.Kent Mein
So we should be all set now :) Kent -- mein@cs.umn.edu
2002-11-25updated .c files to include:Kent Mein
#ifdef HAVE_CONFIG_H #include <config.h> #endif Just need to finish cpp files now :) Kent -- mein@cs.umn.edu
2002-11-25Did all of the .h's in sourceKent Mein
(adding) #ifdef HAVE_CONFIG_H #include <config.h> #endif also the Makefile.in's were from previous patch adding the system depend stuff to configure.ac Kent -- mein@cs.umn.edu
2002-11-25added the following to configure.acKent Mein
+case "$target" in + *sparc* ) + AC_DEFINE(SUN_OGL_NO_VERTEX_MACROS,1,[Fix for Sun's GL]) + ;; +esac + Also added the include to the above .c files. I'm going to add it to everything in source just haven't gotten that far yet. Kent
2002-10-30fixed spacing in the headers to get rid of some warnings and some otherKent Mein
little minor spacing issues.
2002-10-30Fixed defined __sparc to also check for __sparc__ (thanks to Ferris)Kent Mein
2002-10-12Initial revisionv2.25Hans Lambermont