|
From: Hans-Peter J. <hp...@ur...> - 2004-02-16 22:36:11
|
Hi Vaclav et al.,
as promised, the openvip issues collection follow up ;-)
Building bjam was issue free(tm), IIRC.
Building openvip broke in several ways, where most of them could
be fixed by resolving dependencies. Linking errors due to fftw
tricked me a bit: found lib{d,dr,s,sr}fftw libs here, but no libfftw.
I fixed that with:
--- openvip/Jamfile 2003-06-02 18:51:05.000000000 +0200
+++ openvip.hp/Jamfile 2004-02-16 20:26:06.000000000 +0100
@@ -220,13 +220,13 @@
dll filter_bandpass : <template>plugin
src/plugins/fftw_plugins/bandpass.cpp
:
- <find-library>fftw
+ <find-library>sfftw
;
dll filter_equalizer : <template>plugin
src/plugins/fftw_plugins/equalizer.cpp
:
- <find-library>fftw
+ <find-library>sfftw
;
dll in_wav : <template>plugin
but don't know, if that one is the right one. Any ideas?
bjam didn't figured out the PYTHON_INCLUDES dir, I needed to
specify it directly:
--- openvip/Jam-config 2003-02-14 20:10:37.000000000 +0100
+++ openvip.hp/Jam-config 2004-02-16 23:12:00.000000000 +0100
@@ -7,9 +7,10 @@
if $(UNIX)
{
# Location where your copy of UPF is installed:
-UPF_PATH ?= /usr ;
+UPF_PATH ?= /usr/local ;
PYTHON_ROOT ?= /usr ;
-PYTHON_VERSION ?= 2.2 ;
+PYTHON_INCLUDES ?= /usr/include/python ;
+PYTHON_VERSION ?= 2.3 ;
}
if $(NT)
After spitting lots of simple to scary warnings, build was successful.
I had to copy libopenvip_hl.so to /usr/local/lib in order to get
openvip going.
Now, loading some avi's seems fine, I can save the timeline, but
trying to render them, I get:
Traceback (most recent call last):
File "/home/hp/CVS/openvip.hp/bin/MainFrame.py", line 510, in OnRender
background=False)
File "/home/hp/CVS/openvip.hp/bin/render.py", line 94, in renderFromString
r.run()
File "/home/hp/CVS/openvip.hp/bin/render.py", line 52, in run
self.job.run(self)
File "/home/hp/CVS/openvip.hp/bin/render.py", line 61, in run
task = globals.core.load_network_from_string(self.net)
File "/home/hp/CVS/openvip.hp/bin/openvip.py", line 157, in load_network_from_string
raise Error("failed to load XML data:\n%s" % xmldata)
openvip.Error: failed to load XML data:
<?xml version="1.0" ?>
<!DOCTYPE network PUBLIC
"-//OPENVIP//DTD Network Format V1.0//EN"
[...]
I'm busted!
Any ideas on this one?
Cheers,
Pete
|