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
2010-11-21WITH_SAMPLERATE option for cmake, without this playback wont behave right so ↵Campbell Barton
this is mainly intended for developers who build without audio enabled.
2010-11-07patch [#24576] aud.Handle.status return boolCampbell Barton
from Dan Eicher (dna), no functional changes, just return bool rather then int types.
2010-11-01== FFMPEG ==Peter Schlaile
This fixes a rather subtle seeking issue with ffmpeg and Sony XDCAM-footage. Problem is: MPEG2 streams within an MP4 container can contain a start time - at several places. There is a starttime within the video and audio streams and one within the container. FFMpeg commandline tool only uses the container starttime and we used the stream starttime. The world would be a better place, if those two timestamps always match up, since in XDCAM-footage those two starttimes differ in 4 frames - and the container has the right one. We now always use the container start time as ffmpeg commandline tool does (in the hope, that there is a good explaination for this and this is the right thing(tm) to do). I tested this also with HDV footage, which seems to work with the new code, too. Additional fix: disabled seek_by_bytes again, since it will only work correctly, if ffmpeg guessed the HDV bitrate right (which it doesn't). If you have seeking issues with HDV and have an older version of ffmpeg installed, please upgrade, newer versions have some fixes in them.
2010-10-31Audaspace: Disabling High- and Lowpass for Bake Sound to F-Curve Operator in ↵Joerg Mueller
case they're unused.
2010-10-31Fix for #24453: Missing delete statement.Joerg Mueller
2010-10-31rename and negate DISABLE_PYTHON --> WITH_PYTHONCampbell Barton
2010-10-30use PyImport_ExtendInittab for py module initialization rather then adding ↵Campbell Barton
to sys.modules directly, no functional change.
2010-10-24Fully disable AUD's FFTW3 usage.Guillermo S. Romero
2010-10-23Remove msvc build files which are not needed anymore.Campbell Barton
2010-10-23use explicit file paths for CMake rather then globing, This is recommended ↵Campbell Barton
by cmake devs. globbing vs explicit is discussed here. http://www.cmake.org/pipermail/cmake/2008-December/025694.html Practical implications are: - developers need to keep CMakeLists.txt files up to date. - Users wont get strange linking errors if they build after a file is added, since CMake detects CMakeLists.txt is modified and automatically reconfigure.
2010-10-16== Audaspace / FFMPEG ==Peter Schlaile
Audaspace audio seek code wasn't taking start_time into account. (Most common symptom: HDV MPEG2TS files always start audio playback at the beginning regardless of seek position.)
2010-09-07- added back zlib include (needed for win32).Campbell Barton
- use list append in more places. - remove non existing include dir.
2010-09-06- use list append in more places (preferred method since its faster)Campbell Barton
- remove some unused include paths - remove unused linux path define
2010-09-03Fix [#23578] Blender crashes when Audio Scrubbing is onNathan Letwory
Reported by Guy Smith. MSVC-compiled code would fall over iterator decrease on empty list. Shortest snippet to redo: http://www.pasteall.org/15408/cpp See also http://www.pasteall.org/15409/cpp for list.end() behaviour on MSVC. Thanks to Jörg Müller for assistance.
2010-09-02Audaspace: Removing an unneeded function.Joerg Mueller
2010-08-30Finally change SConscript tabs to spaces.Nathan Letwory
2010-08-25rename most scons build targets to match cmakeCampbell Barton
2010-08-24rename some cmake build targetsCampbell Barton
2010-08-20Fixing [#23370] problem when running game engineJoerg Mueller
2010-08-18Update MSVC project filesBenoit Bolsee
2010-08-17Audaspace: This should fix all missing python includes now once for all...Joerg Mueller
2010-08-16SVN maintenance.Guillermo S. Romero
2010-08-16Audaspace: Further fixes.Joerg Mueller
2010-08-16Audaspace: Buildsystem update after Ton destroyed building with scons and ↵Joerg Mueller
cmake, also including a patch by freakabcd fixing some missing python include paths.
2010-08-16Audaspace: Fix for ppl with outdated ffmpeg.Joerg Mueller
2010-08-16Makefile fixes for Audaspace. This also replaces the not-usedTon Roosendaal
WITH_PYTHON with DISABLE_PYTHON
2010-08-16Audaspace: Trying to fix a reported compile bug about missing UINT64_C.Joerg Mueller
2010-08-16Audaspace: Fixing quaternion and relativeness of 3D sounds error.Joerg Mueller
2010-08-16Fix from patch tracker by saphires: [#23339] Remove const members in ↵Joerg Mueller
AUD_3Dmath.h
2010-08-16Audaspace:Joerg Mueller
* Fix for uncached exception whith invalid audio file. * Includes fix for windows.
2010-08-16Audaspace: Disabling FFTW building as this stuff is unused atm anyway.Joerg Mueller
2010-08-13Py API Docs:Joerg Mueller
* Moving the alternative parser * Checking for classmethods and staticmethods of builtin modules
2010-08-10Py API Docs:Joerg Mueller
* Improved audaspace docs * Added an epy parser to add epydoc documented modules to the sphinx docs
2010-08-06Py API Documentation:Joerg Mueller
* Fix some minor errors my script found in mathutils and blf. * Fixing optional parameters with default values in aud.
2010-08-05Audaspace Py API: Improving Docs (Crosslinks, etc).Joerg Mueller
2010-08-03Audaspace Py API: Updated some outdated docs.Joerg Mueller
2010-08-03Audaspace:Joerg Mueller
* Py API: Renamed Sound to Factory to match the C++ classes and make it possible to add Readers when necessary to the API. * Py API docs: Added the filter example. * Fixed a crash for sounds without stop callback.
2010-08-03Audaspace Py API: Getting rid of unnecessary forward declarations.Joerg Mueller
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-03Audaspace Py API:Joerg Mueller
* Devices are now created with the constructor instead of class methods.
2010-08-02Audaspace:Joerg Mueller
* Added a stopCallback function that is called when the end of a sound is reached. * Fixed the scrubbing not working. * Minor SoundActuator cleanup.
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-31Audaspace:Joerg Mueller
* Fixed some compiler warnings * Implemented device looping * Note: Scrubbing in the sequencer is broken atm
2010-07-31svn merge -r 30718:30912 ↵Joerg Mueller
https://svn.blender.org/svnroot/bf-blender/trunk/blender
2010-07-31Audaspace: Refactored the complete 3D Device code giving a nicer API.Joerg Mueller
2010-07-28Audaspace Refactor:Joerg Mueller
* Removed whole Capabilities System * Fixed Py API error strings * Improved some Py API properties * Minor other changes
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-26bugfix [#23038] View rotation snap has left and right view names swapped ↵Campbell Barton
arround. also noticed some spelling errors.
2010-07-26Audaspace Py API:Joerg Mueller
* Renamed get_c_device() to device() * Made the threshold parameter of Sound.square() optional * Added a sample rate parameter for Sound.sine() * Example updates
2010-07-26Audaspace Py API:Joerg Mueller
* Renaming superpose and double to mix and join * Making most of the static methods of Sound normal ones * Minor documentation fixes