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
2014-07-21Bugfix T41133: Audio: Speakers with animated pitch cause clicks in rendered ↵Jörg Müller
animations, crashes or huge filesizes in rendered audio Crash happened when the pitch value got <= 0, preventing this now.
2013-03-08code cleanup: 0 --> NULLCampbell Barton
2013-02-27Fix various warnings with clang build, and adjust cmake clang warnings flagsBrecht Van Lommel
to include a few more that gcc is using too.
2012-12-10Audaspace:Joerg Mueller
Implemented forgotten Calculator classes from boost migration.
2012-11-05Audaspace:Joerg Mueller
Replacing AUD_Reference with boost::shared_ptr.
2012-11-04code cleanup: double promotionsCampbell 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-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-02-17unify include guard defines, __$FILENAME__Campbell Barton
without the underscores these clogged up the namespace for autocompleation which was annoying.
2011-10-23remove $Id: tags after discussion on the mailign list: ↵Campbell Barton
http://markmail.org/message/fp7ozcywxum3ar7n
2011-10-14Fix for [#28916] 2.6 RC2 - Bake Sound to FCurve CrashJoerg Mueller
2011-08-163D Audio GSoC:Joerg Mueller
Code documentation. Also: * Fix: rlint for MSVC. * Minor other small fixes/changes.
2011-08-113D Audio GSoC:Joerg Mueller
Adding a mono flag to mixdown non-mono sounds for 3D audio. * Added mono sound loading. * Bugfix: AUD_COMPARE_SPECS usage was wrong. * Bugfix: JOS resampler = instead of ==. * Bugfix: Change of a sound should apply settings in AUD_SequencerHandle. * Bugfix: Memory leak when canceling open sound operator.
2011-08-093D Audio GSoC:Joerg Mueller
Speaker objects fully functional! Minor changes: * Fixed three memory bugs found via valgrind. * Fixed bug with jack transport crashing after file loading. * Sound NLA Strips now start at CFRA instead of 0.
2011-07-303D Audio GSoC:Joerg Mueller
* Fix for sequencer strip IDs, only one strip played. * Fix for PyAPI sample rate. * Enhanced Double Reader to return more data if possible.
2011-07-133D Audio GSoC:Joerg Mueller
* Fixed a warning in AUD_DoubleReader.cpp * Removed some unneeded includes * Fixed a bug resulting in a crash when stopping a sound * Fixed a bug where a NaN resulted in a horrible memory error * Fixed a typo bug which caused crackling in audio playback and export * Added memory debugging code (ifdefed)
2011-06-233D Audio GSoC:Joerg Mueller
- Fixes for MSVC compiling. - Fix for ffmpeg audio export with timebase, which fixes vorbis encoding (the only codec using this).
2011-06-223D Audio GSoC:Joerg Mueller
Adapting all readers to maximally support dynamic resampling/rechanneling, introducing a DynamicIIRFilter for example.
2011-06-223D Audio GSoC:Joerg Mueller
Removing unneeded AUD_ResampleFactory.
2011-06-223D Audio GSoC:Joerg Mueller
- Converting AUD_SampleRate to a double - Removing AUD_DefaultMixer - Introducing AUD_ResampleReader as base class for all resampling readers.
2011-06-223D Audio GSoC:Joerg Mueller
Dynamic resampling for libsamplerate and linear resampling.
2011-06-223D Audio GSoC:Joerg Mueller
- Created Handle classes - Changed Reference counting completely - Fixing some streaming bugs - Completely disabled OpenAL Buffered Factories (they were unused anyway)
2011-06-223D Audio GSoC:Joerg Mueller
Streaming improved.
2011-06-223D Audio GSoC:Joerg Mueller
Buffer.assureSize - a function that should long have been there.
2011-06-223D Audio GSoC:Joerg Mueller
Code cleanup: rewriting some functions to static methods.
2011-06-153D Audio GSoC:Joerg Mueller
Temporary fix for MSVC.
2011-06-153D Audio GSoC:Joerg Mueller
Removing unneeded const from Factory::createReader.
2011-06-143D Audio GSoC:Joerg Mueller
Changed Readers to top-down architecture instead of bottom-up.
2011-06-043D Audio GSoC:Joerg Mueller
Memory management improvements.
2011-02-25doxgyen: audaspace tagged.Nathan Letwory
2011-02-19Relicensing audaspace under GPL 2 or later.Joerg Mueller
2011-01-30remove nan-makefilesCampbell Barton
2010-08-03Audaspace:Joerg Mueller
* Added an error string for audaspace exceptions. * Fixed PyAPI exceptions. * Minor bugfixes. * Added a name parameter to the Jack device, so that one can define an own name via Python.
2010-08-02Audaspace:Joerg Mueller
* Created awesome filter classes :) * Made all filter effects use the filter classes instead of having the same implementation everywhere. * Added a Python API for LTI IIR filters. * Fixed a warning in creator.c that was introduced when adding game autoplay.
2010-07-28Audaspace: HUGE Refactor.Joerg Mueller
Some points of the refactor not sorted by importance: * Fixed immutability of readers and factories (there are exceptions...) * Fixed copy constructors and = operators * Removed messaging system * Removed reader types * Added const where possible * Using initalisers when possible * Avoided use of pointers when possible * Removed AUD_NEW and AUD_DELETE macros * Removed useless NULL pointer checks * Fixed exception catching * Fixed some yet unknown bugs * Lots of other stuff
2010-07-09Audaspace:Joerg Mueller
* Comment fix for PingPongFactory * Added 2 new factory types: Superpose and Double
2010-02-08Warning fixes, one actual bug found in sequencer sound wave drawing. AlsoBrecht Van Lommel
changed some malloc to MEM_mallocN while trying to track down a memory leak.
2010-02-082.5 Audio:Joerg Mueller
- recode of the whole sequencer audio handling - encode audio flag removed, instead you choose None as audio codec, added None for video codec too - ffmpeg formats/codecs: enabled: theora, ogg, vorbis; added: matroska, flac (not working, who can fix?), mp3, wav - sequencer wave drawing - volume animation (now also working when mixing down to a file!) - made sequencer strip position and length values unanimatable
2010-01-01Added another three effects that you can use with the Sound to F-Curve ↵Joerg Mueller
modifier, have fun!
2010-01-01Small fixes for some float literals.Joerg Mueller
2010-01-01Fix for plattforms that don't have M_PI in the cmath include.Joerg Mueller
2010-01-01Huge new year audio commit!Joerg Mueller
* Refactored the whole audaspace library to use float as sample format over all readers. * Added new Readers like the linear resampler, envelope, lowpass, highpass and butterworth. * Note: The butterworth filter isn't working correctly, some bug in there... Maybe also true for the envelope. * Added a sound to f-curve operator that behaves mostly like the soundtracker script of technoestupido.
2009-12-28Sound:Joerg Mueller
* Fixed minor errors in AUD_BufferReader.cpp and AUD_LoopFactory.h * Added a first version of a bandpass filter using fftw3
2009-12-25SVN maintenance.Guillermo S. Romero
2009-12-24Added rectifying sound effect (will be used for sound -> f-curve later).Joerg Mueller
2009-09-06* clean out some warnings (unrefenced vars mainly)Nathan Letwory
2009-08-10Add initial support in Makefiles for audaspace.Guillermo S. Romero
Note: removed hardcoded path in include directive. Check other build systems.
2009-08-102.5: Sound branch merge!Joerg Mueller
See mailing list for additional information.