Nathan Letwory
45ed5f53f6
doxgyen: audaspace tagged.
2011-02-25 10:21:56 +00:00
Nathan Letwory
33ceadb2a6
"I must be an idiot"
2011-02-22 23:14:27 +00:00
Nathan Letwory
ce717ff355
doxygen fix, otherwise file doesn't show up in module section.
2011-02-22 23:10:51 +00:00
Nathan Letwory
8e3fcf007a
doxygen: add Audaspace C API entry
2011-02-22 21:58:43 +00:00
Joerg Mueller
d36a89c8f4
Audaspace:
...
* Adding play method to the device classes to play back a reader (not used yet, preparation for a later feature).
* Using a linear resampler in case SRC is disabled.
2011-02-18 23:50:27 +00:00
Joerg Mueller
020c03bc05
Relicensing audaspace under GPL 2 or later.
2011-02-18 23:47:37 +00:00
Joerg Mueller
376e0ae2a3
Audio Bugfixes:
...
* [#25638 ] 'Insufficient thread locking' for sounds
- Actually a workaround for an msvc bug, msvc STL containers are buggy
* [#25922 ] Sound does not play in BlenderPlayer(r34579)
- Windows OpenAL doesn't seem to have clear context error state on initialising
2011-02-03 13:25:05 +00:00
Campbell Barton
89c617a116
remove nan-makefiles
2011-01-30 15:29:22 +00:00
Campbell Barton
1bd0db59f4
use cmake defined names for jpeg, png, zlib and python libs, building on *nix with non-standard libjpeg/png/zlib locations was broken.
...
in the case of python this makes it easier to move to find_package(PythonLibs) when 3.x is supported.
2011-01-25 14:43:13 +00:00
Campbell Barton
c9f353956c
use PySequence_Size() rather then PySequence_Length(), this is only kept in python for backwards compatibility.
2011-01-09 14:53:18 +00:00
Joerg Mueller
9118614d8e
Fix for blender crashing when starting playback with audio without being able to open the audio file.
2010-12-27 11:32:43 +00:00
Campbell Barton
5e382eb8e5
rename blenderlib to blender_add_lib
2010-12-22 23:09:30 +00:00
Joerg Mueller
f08fb046ce
Audio:
...
* Improve Jack Transport responsiveness.
* Added minor error checking to OpenAL.
2010-12-22 10:51:34 +00:00
Campbell Barton
afacd18498
use lowercase for cmake builtin names and macros, remove contents in else() and endif() which is no longer needed.
2010-12-08 08:43:06 +00:00
Campbell Barton
cd97253502
- added GCC warning -Wstrict-prototypes
...
- fixed bug in paste material, exposed by stricter warnings.
- removed/renamed various shadowed vars.
- removed BGE lamp.colour, only allow lamp.color attribute.
2010-12-03 12:30:59 +00:00
Campbell Barton
42d6603cae
Add option for CMake to build libredcode, also use CODEC prefix for ffmpeg, quicktime & sndfile options.
2010-11-30 18:52:39 +00:00
Campbell Barton
e8397e6193
include headers in cmake source, added a script to check for consistency, reporting missing headers & C files.
...
this is important so IDE's using CMake integration always get blender headers. - QtCreator & MSVC for eg, probably others too.
2010-11-29 04:35:56 +00:00
Campbell Barton
c85c2746df
WITH_SAMPLERATE option for cmake, without this playback wont behave right so this is mainly intended for developers who build without audio enabled.
2010-11-21 14:32:55 +00:00
Campbell Barton
46f90690e0
patch [ #24576 ] aud.Handle.status return bool
...
from Dan Eicher (dna), no functional changes, just return bool rather then int types.
2010-11-07 04:34:27 +00:00
Peter Schlaile
1b18ea5823
== FFMPEG ==
...
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-11-01 18:13:10 +00:00
Joerg Mueller
4c80d13e54
Audaspace: Disabling High- and Lowpass for Bake Sound to F-Curve Operator in case they're unused.
2010-10-31 14:44:45 +00:00
Joerg Mueller
391c547208
Fix for #24453 : Missing delete statement.
2010-10-31 14:21:06 +00:00
Campbell Barton
0876fce009
rename and negate DISABLE_PYTHON --> WITH_PYTHON
2010-10-31 04:11:39 +00:00
Campbell Barton
ced06081b8
use PyImport_ExtendInittab for py module initialization rather then adding to sys.modules directly, no functional change.
2010-10-29 22:59:39 +00:00
Guillermo S. Romero
1de1d6537e
Fully disable AUD's FFTW3 usage.
2010-10-24 00:09:23 +00:00
Campbell Barton
f383e2e0e6
Remove msvc build files which are not needed anymore.
2010-10-23 15:14:54 +00:00
Campbell Barton
c6976e7351
use explicit file paths for CMake rather then globing, This is recommended 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-23 04:05:55 +00:00
Peter Schlaile
7122b534fa
== Audaspace / FFMPEG ==
...
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-10-16 15:01:01 +00:00
Campbell Barton
2406ebe1a4
- added back zlib include (needed for win32).
...
- use list append in more places.
- remove non existing include dir.
2010-09-07 01:13:10 +00:00
Campbell Barton
04b0dcd9e5
- use list append in more places (preferred method since its faster)
...
- remove some unused include paths
- remove unused linux path define
2010-09-06 10:15:41 +00:00
Nathan Letwory
d372fc178c
Fix [ #23578 ] Blender crashes when Audio Scrubbing is on
...
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-02 21:56:08 +00:00
Joerg Mueller
dd4aecb97a
Audaspace: Removing an unneeded function.
2010-09-01 20:33:26 +00:00
Nathan Letwory
6c113b54b3
Finally change SConscript tabs to spaces.
2010-08-29 20:52:05 +00:00
Campbell Barton
4b40d73bfb
rename most scons build targets to match cmake
2010-08-25 04:30:47 +00:00
Campbell Barton
6464718083
rename some cmake build targets
2010-08-24 04:29:23 +00:00
Joerg Mueller
b9be82487f
Fixing [ #23370 ] problem when running game engine
2010-08-20 11:57:46 +00:00
Benoit Bolsee
ee78298dd5
Update MSVC project files
2010-08-17 20:53:07 +00:00
Joerg Mueller
26809f38aa
Audaspace: This should fix all missing python includes now once for all...
2010-08-16 20:05:59 +00:00
Guillermo S. Romero
54de782faf
SVN maintenance.
2010-08-16 19:51:29 +00:00
Joerg Mueller
9bb21deec6
Audaspace: Further fixes.
2010-08-16 18:50:59 +00:00
Joerg Mueller
8d7204ac04
Audaspace: Buildsystem update after Ton destroyed building with scons and cmake, also including a patch by freakabcd fixing some missing python include paths.
2010-08-16 18:22:51 +00:00
Joerg Mueller
db38a7f2cc
Audaspace: Fix for ppl with outdated ffmpeg.
2010-08-16 18:13:26 +00:00
Ton Roosendaal
7fc5f78b15
Makefile fixes for Audaspace. This also replaces the not-used
...
WITH_PYTHON with DISABLE_PYTHON
2010-08-16 17:04:46 +00:00
Joerg Mueller
1c17760105
Audaspace: Trying to fix a reported compile bug about missing UINT64_C.
2010-08-16 15:38:55 +00:00
Joerg Mueller
a3837b617b
Audaspace: Fixing quaternion and relativeness of 3D sounds error.
2010-08-16 14:55:45 +00:00
Joerg Mueller
75bb393ecc
Fix from patch tracker by saphires: [ #23339 ] Remove const members in AUD_3Dmath.h
2010-08-16 14:31:39 +00:00
Joerg Mueller
b2cb83598c
Audaspace:
...
* Fix for uncached exception whith invalid audio file.
* Includes fix for windows.
2010-08-16 13:13:05 +00:00
Joerg Mueller
77e286fee9
Audaspace: Disabling FFTW building as this stuff is unused atm anyway.
2010-08-16 12:27:51 +00:00
Joerg Mueller
02314f11d8
Py API Docs:
...
* Moving the alternative parser
* Checking for classmethods and staticmethods of builtin modules
2010-08-13 11:49:54 +00:00
Joerg Mueller
d9272cdc20
Py API Docs:
...
* Improved audaspace docs
* Added an epy parser to add epydoc documented modules to the sphinx docs
2010-08-10 07:57:02 +00:00