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
2012-09-28code cleanup: correct spellingCampbell Barton
2012-09-20style cleanupCampbell Barton
2012-09-20code cleanup: remove unused macros, commet some which may be useful later - ↵Campbell Barton
or good to keep for completeness. quieted some warnings and add flags -Wmissing-include-dirs and -Wno-div-by-zero to cmake/gcc
2012-09-16style cleanupCampbell Barton
2012-09-16code cleanup: quiet warnings for gcc's -Wundef, -Wmissing-declarationsCampbell Barton
2012-09-15style cleanupCampbell Barton
2012-09-06code clenup: comments and some style edits on ghost/osx (odd indentation)Campbell Barton
2012-08-01style cleanup: whitespace, also add '?' to save over popup since it wasnt ↵Campbell Barton
totally clear it was a question (user pointed this out, they thought it was just notification and lost their work).
2012-07-05code cleanup: remove Python.h include from blenkernel.Campbell Barton
2012-06-18Reduce amount of deprecated symbols used from FFmpegSergey Sharybin
This switches some areas of Blender which are related on FFmpeg stuff from deprecated symbols to currently supported one. Pretty straightforward changes based on documentation of FFmpeg's API which symbols should be now used. This should make Blender compatible with recent FFmpeg 0.11. Should be no functional changes.
2012-06-17code cleanup: includes, also correct some py example typosCampbell Barton
2012-05-14Make blender compilable by gcc-4.7 and strict compilation flags:Sergey Sharybin
- Remove strict flags from files, which are using FFmpeg stuff We're still using some symbols which are marked as deprecated. Ideally, we shall switch to new API, but it's a bit larger challenge because we don't want to break compatibility withotu actual need. - Replace MAKE_ID with BT_MAKE_ID in bullet library. This is needed to prevent re-definition of MAKE_ID in bullet library. Seems it's only used to read blender files, so should be quite safe change.
2012-05-05Patch [#31240] Fix audaspace deadlockJoerg Mueller
fix for [#31097] glibc error when playing sound using BGE by Wander Lairson Costa Note: This deadlock fix makes the code non-threadsafe again, a proper solution has to be found still.
2012-05-05Fixes forJoerg Mueller
* [#31285] VSE: audio pitch change delays audio * [#31260] VSE Trimmed audio plays when overlaped
2012-04-28Hopefully a fix for [#31097] glibc error when playing sound using BGEJoerg Mueller
2012-04-28Audio:Joerg Mueller
* Fix for [#31099] Audio in Meta-Strips Plays Beyond Strip Cut * Adding a split files option to the mixdown operator which then renders each channel into a separate file
2012-04-24revert 45924, not a very clean solution, especially for external libraries ↵Antony Riakiotakis
and looks like -fpermissive is used in linux too
2012-04-24Remove mingw-w64 errors from loss of precision by converting 64bit pointers ↵Antony Riakiotakis
to ints. All cases found were harmless and the error behaviour could be turned off by the -fpermissive flag but I'd rather keep that off to detect any real problems should they arise.
2012-04-24Add libMV and Scons support for MinGW-w64, patches by Caleb Joseph with ↵Antony Riakiotakis
slight modifications. Thanks!
2012-03-21Fix for [#30499] video sequencer crashes when moving around within a sequence.Joerg Mueller
2012-02-17patch [#30227] Various MSVC (32-bit) Warning and Typo FixesCampbell Barton
made some small edits - removed changes to AVI reading since the data types are apart of the format spec. - absf -> abs for a double value in render code.
2012-02-17unify include guard defines, __$FILENAME__Campbell Barton
without the underscores these clogged up the namespace for autocompleation which was annoying.
2012-02-14Fix for [#30171] "Audio Muted" Does Not Mute AudioJoerg Mueller
2011-12-22split >120 length lines (mostly if statements)Campbell Barton
2011-12-14Fix for Jens commit, otherwise OSX will crash without Jack as soon as audio ↵Joerg Mueller
access is tried.
2011-12-14Cleanup for 42622 using struct stat instead boostJens Verwiebe
2011-12-14OSX: Add a framework-check for Jack to avoid crashesJens Verwiebe
2011-12-13OSX: proper scons config and linking weak for jackOSX and errorhandlingJens Verwiebe
2011-11-14Fix for uninitialized usage of spos in AUD_LinearResampleReader::readSergey Sharybin
Patch is verified by neXyon
2011-11-11correct indentation and some whitespace edits (no functional changes)Campbell Barton
2011-11-08Remove redundant .remove()Nathan Letwory
2011-11-08Fix compile after audaspace file source.remove..Jens Verwiebe
2011-11-08Don't compile AUD_JOSResampleReaderCoeff.cpp twice (it's included in ↵Sergey Sharybin
AUD_JOSResampleReader.cpp) Patch from nico_ga, thanks!
2011-11-05misc doc editsCampbell Barton
- remove recently added sphinx reference workaround. - tested doxygen, correct some warnings, set tab width and added pymathutils group. - added convenience target 'make doc_doxy'
2011-11-03use Py_TYPE macro (no functional changes)Campbell Barton
2011-10-23remove $Id: tags after discussion on the mailign list: ↵Campbell Barton
http://markmail.org/message/fp7ozcywxum3ar7n
2011-10-22Fix for an unhandled exception. Campbell: please include in 2.60a.Joerg Mueller
2011-10-20Fix for 7.1 audio export being misscalculated...Joerg Mueller
2011-10-14Fix for [#28916] 2.6 RC2 - Bake Sound to FCurve CrashJoerg Mueller
2011-10-14Fixing [#28907] Frozen playback.Joerg Mueller
Also fixing two more crashes when audio files don't exist/cannot be read and apply a changed file path of a sound, reported by Jens Verwiebe in IRC.
2011-10-10Sequencer audio waveform drawing fix, now assured to be within the strip bounds.Joerg Mueller
2011-10-02Missed some stoff when removing libsamplerate.Joerg Mueller
2011-10-02Typo fix. nexYon commit caused bit-loss in the word incs.Nathan Letwory
2011-10-02* Removing libsamplerate from build systemsJoerg Mueller
* Enabling OpenAL for scons win64-vc in default config; Nathan or Sergey: please update the build bot to build with OpenAL!
2011-09-28Bugfix for wrong playback reported by Sergey Sharybin in IRC.Joerg Mueller
2011-09-27py apiCampbell Barton
- use Py_ssize_t when dealing with python sequence sizes - dont call PySequence_Size(py_b) in a loop (its slow). - use faster sequence/float parsing in aud.Factory.filter
2011-09-20pep8 update & some minor cmake edits.Campbell Barton
2011-09-19cleanup endian handlingCampbell Barton
- define __BIG_ENDIAN__ or __LITTLE_ENDIAN__ with cmake & scons. - ENDIAN_ORDER is now a define rather than a global short. - replace checks like this with single ifdef: #if defined(__sgi) || defined (__sparc) || defined (__sparc__) || defined (__PPC__) || defined (__ppc__) || defined (__hppa__) || defined (__BIG_ENDIAN__) - remove BKE_endian.h which isn't used
2011-09-11Audio:Joerg Mueller
* Fix for high quality upsampling which was wrong. * Fix for doppler effects which were calculated wrong for scenes. * Improved animation evaluation at the beginning and end of a scene.
2011-08-31typo fix: end of lines ;; --> ;Campbell Barton