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
2011-03-05use NULL rather then 0 for pointer assignments & comparison, modifier, imbuf ↵Campbell Barton
& editors.
2011-02-27doxygen: blender/avi tagged.Nathan Letwory
2011-02-23Clean up headers a bit more.Guillermo S. Romero
2011-02-23doxygen: prevent GPL license block from being parsed as doxygen comment.Nathan Letwory
2011-01-30remove nan-makefilesCampbell Barton
2010-11-23use zero initializers instead of memset(), also change PointerRNA_NULL from ↵Campbell Barton
an extern into a define.
2010-11-19use 'const char *' for imbuf and file ops.Campbell Barton
2010-10-20Quiet compiler warnings.Campbell Barton
2010-10-17- fixed remaining unused warnings.Campbell Barton
- omit render code from this warning (cmake only), until render branch is merged. - moved -Wunused-parameter warning to apply to all C code in blender (not just ./source/blender), (cmake only).
2010-10-16most unused arg warnings corrected.Campbell Barton
- removed deprecated bitmap arg from IMB_allocImBuf (plugins will need updating). - mostly tagged UNUSED() since some of these functions look like they may need to have the arguments used later.
2010-08-16- remove unused includes IMB_*, BIF_* & MEM_*Campbell Barton
- remove MEM_guardedalloc.h from header files (include directly)
2010-08-11Update address in license block.Guillermo S. Romero
2010-04-18remove config.h references, was added for automake build system rev around ↵Campbell Barton
124-126 but isnt used by any build systems now.
2010-03-22spaces -> tabs, (4 spaces == 1 tab, only for white space preceding text)Campbell Barton
2010-02-12correct fsf addressCampbell Barton
2009-12-26fixes for errors/warnings found with cppcheckCampbell Barton
2009-06-21== AVI ==Peter Schlaile
Only open AVI files with at least one supported video track type. (This is the real fix for DV-Type1-AVIs, since the FCC of iads, that is used there, wasn't detected. But the code will happily open AVI-files with only audio tracks... So the real fix is: only try to open things, that contains something we know how to handle :) )
2008-04-17Patch from GSR that a) fixes a whole bunch of GPL/BL licenseChris Want
blocks that were previously missed; and b) greatly increase my ohloh stats!
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