Re: Indent to get Avisynth working with Wine/Winelib

2003-09-11 Thread Kevin Atkinson
On Thu, 11 Sep 2003, Dan Kegel wrote: > Kevin wrote: > > BTW: You can find my C API at http://kevin.atkinson.dhs.org/avisynth_c/. > > Avisynth: http://www.avisynth.org/. And a dead simple program as the > > test case for the bug http://bugs.winehq.org/show_bug.cgi?id=1707 . > > That test case i

Re: Indent to get Avisynth working with Wine/Winelib

2003-09-11 Thread Dan Kegel
Kevin wrote: BTW: You can find my C API at http://kevin.atkinson.dhs.org/avisynth_c/. Avisynth: http://www.avisynth.org/. And a dead simple program as the test case for the bug http://bugs.winehq.org/show_bug.cgi?id=1707 . That test case involves compiling a program with mingw. Can you compile th

Re: Indent to get Avisynth working with Wine/Winelib

2003-09-11 Thread Mike Hearn
On Wed, 10 Sep 2003 19:13:18 -0400, Sir Kevin Atkinson scribed thus: > But can I say I need this block of memory (ie an arbitrary block which > already has data in it) to be shared. Yes, I think so, the main problem is that setting up a SHM segment is a bit expensive, so you want to reuse it on

Re: Indent to get Avisynth working with Wine/Winelib

2003-09-10 Thread Kevin Atkinson
On 11 Sep 2003, Mike Hearn wrote: > On Wed, 2003-09-10 at 23:36, Kevin Atkinson wrote: > > Can a linux application link with a winlib shared library. > > Nope. Not yet, anyway. > > > > -- run avisynth in a separate process, and devise some sort of > > >RPC mechanism to marshall calls

Re: Indent to get Avisynth working with Wine/Winelib

2003-09-10 Thread Mike Hearn
On Wed, 2003-09-10 at 23:36, Kevin Atkinson wrote: > Can a linux application link with a winlib shared library. Nope. Not yet, anyway. > > -- run avisynth in a separate process, and devise some sort of > >RPC mechanism to marshall calls back and forth. > > Unless the processes can sh

Re: Indent to get Avisynth working with Wine/Winelib

2003-09-10 Thread Kevin Atkinson
On Wed, 10 Sep 2003, Dimitrie O. Paun wrote: > On Wed, 10 Sep 2003, Kevin Atkinson wrote: > > > > This is not currently possible, sorry. How big is this interface to > > > avisynth? The only option ATM is to have it out-of-process, so we'll > > > need to come up with some sort of stub/proxy, if y

Re: Indent to get Avisynth working with Wine/Winelib

2003-09-10 Thread Mike Hearn
a rOn Wed, 2003-09-10 at 22:54, Kevin Atkinson wrote: > What is this? > > Avisynth needs VC++. My API needs VC++ as it acts as the bridge and must > make VC++ calls to avisynth. Everything can be gcc. And in fact I have > successfully cross compiled Avisynth filters using my new C interface.

Re: Indent to get Avisynth working with Wine/Winelib

2003-09-10 Thread Dimitrie O. Paun
On Wed, 10 Sep 2003, Kevin Atkinson wrote: > > This is not currently possible, sorry. How big is this interface to > > avisynth? The only option ATM is to have it out-of-process, so we'll > > need to come up with some sort of stub/proxy, if you're interested. > > Hu? As I said I am pretty Win32

Re: Indent to get Avisynth working with Wine/Winelib

2003-09-10 Thread Kevin Atkinson
BTW: You can find my C API at http://kevin.atkinson.dhs.org/avisynth_c/. Avisynth: http://www.avisynth.org/. And a dead simple program as the test case for the bug http://bugs.winehq.org/show_bug.cgi?id=1707 . -- http://kevin.atkinson.dhs.org

Re: Indent to get Avisynth working with Wine/Winelib

2003-09-10 Thread Kevin Atkinson
On Wed, 10 Sep 2003, Dimitrie O. Paun wrote: > On Wed, 10 Sep 2003, Kevin Atkinson wrote: > > > My intent is to get Avisynth working under Linux with the help of > > Wine/Winelib. Since it normal interface is VC++ recompiling it under > > Winelib is not really an option as that will mean that

Re: Indent to get Avisynth working with Wine/Winelib

2003-09-10 Thread Dimitrie O. Paun
On Wed, 10 Sep 2003, Kevin Atkinson wrote: > My intent is to get Avisynth working under Linux with the help of > Wine/Winelib. Since it normal interface is VC++ recompiling it under > Winelib is not really an option as that will mean that existing plugins for > Avisynth will no longer work wit

Indent to get Avisynth working with Wine/Winelib

2003-09-10 Thread Kevin Atkinson
Hi, I am the developer of the C interface for Avisynth. Avisynth is a very popular Open Source tool for for video post-production for Win32. More information can be found at http://www.avisynth.org/. My intent is to get Avisynth working under Linux with the help of Wine/Winelib. Since it no