Re: [QUARTZ] Add FFMpeg video wrapper filter (take 3)

2005-06-15 Thread Christian Costa
Ideally, I don't think we want to link to libavcodec at all. We should import code for as many filters as native implements, without stepping on patented territory. How would you benefit from ffmpeg update in a seamlessly manner? Note that some months ago, I did a version of the wrapper

Re: [QUARTZ] Add FFMpeg video wrapper filter (take 3)

2005-06-14 Thread Rob Shearman
Christian Costa wrote: Message du 14/06/05 15:43 De : "Marcus Meissner" A : "Christian Costa" Copie à : "Marcus Meissner" , "Alexandre Julliard" , "Brian Vincent" , wine-devel@winehq.com Objet : Re: [QUARTZ] Add FFMpeg video wrapper filter

Re: [QUARTZ] Add FFMpeg video wrapper filter (take 3)

2005-06-14 Thread Christian Costa
> Message du 14/06/05 15:43 > De : "Marcus Meissner" > A : "Christian Costa" > Copie à : "Marcus Meissner" , "Alexandre Julliard" , "Brian Vincent" , > wine-devel@winehq.com > Objet : Re: [QUARTZ] Add FFMpeg video wrapper filt

Re: [QUARTZ] Add FFMpeg video wrapper filter (take 3)

2005-06-14 Thread Marcus Meissner
On Tue, Jun 14, 2005 at 01:49:59PM +0200, Christian Costa wrote: > > > Message du 14/06/05 13:24 > > De : "Marcus Meissner" > > A : "Christian Costa" > > Copie à : "Marcus Meissner" , "Alexandre Julliard" , "Brian Vincent

Re: [QUARTZ] Add FFMpeg video wrapper filter (take 3)

2005-06-14 Thread Christian Costa
Alexandre, If the possible (even rare) presence of a libavcodec.so lib can causes troubles. Would it be acceptable to force static linking with a configure check such as this one? dnl Check for avcodec lib AVCODECLIBS="" LIBS="/usr/lib/libavcodec.a -lz -lm" AC_CHECK_HEADERS(ffmpeg/avco

Re: [QUARTZ] Add FFMpeg video wrapper filter (take 3)

2005-06-14 Thread Christian Costa
Alexandre, If the possible (even rare) presence of a libavcodec.so lib can causes troubles. Would it be acceptable to force static linking with a configure check such as this one? dnl Check for avcodec lib AVCODECLIBS="" LIBS="/usr/lib/libavcodec.a -lz -lm" AC_CHECK_HEADERS(ffmpeg

Re: [QUARTZ] Add FFMpeg video wrapper filter (take 3)

2005-06-14 Thread Christian Costa
> Message du 14/06/05 13:24 > De : "Marcus Meissner" > A : "Christian Costa" > Copie à : "Marcus Meissner" , "Alexandre Julliard" , "Brian Vincent" , > wine-devel@winehq.com > Objet : Re: [QUARTZ] Add FFMpeg video wrapper filt

Re: [QUARTZ] Add FFMpeg video wrapper filter (take 3)

2005-06-14 Thread Marcus Meissner
On Tue, Jun 14, 2005 at 01:05:37PM +0200, Christian Costa wrote: > > What do you mean by dlls? > A shared version of libavcodec or a quartz.dll with libavcodec linked > statically? I meant seperate DLLs (dll.so files for WINE actually). Is all needed to be in quartz.dll directly? Or can you sp

Re: [QUARTZ] Add FFMpeg video wrapper filter (take 3)

2005-06-14 Thread Christian Costa
ECTED], wine-devel@winehq.com > Objet : Re: [QUARTZ] Add FFMpeg video wrapper filter (take 3) > > On Mon, Jun 13, 2005 at 11:08:00AM -0600, Brian Vincent wrote: > > On 13 Jun 2005 18:11:14 +0200, Alexandre Julliard > > wrote: > > > > > > > > > If the

Re: [QUARTZ] Add FFMpeg video wrapper filter (take 3)

2005-06-14 Thread Marcus Meissner
On Mon, Jun 13, 2005 at 11:08:00AM -0600, Brian Vincent wrote: > On 13 Jun 2005 18:11:14 +0200, Alexandre Julliard <[EMAIL PROTECTED]> > wrote: > > > > > > If there's only a static lib then I guess it's fine. Is that the case > > on all major distros? > > > > I just dug through a bunch of dis

Re: [QUARTZ] Add FFMpeg video wrapper filter (take 3)

2005-06-13 Thread Johan Dahlin
Brian Vincent wrote: On 13 Jun 2005 18:11:14 +0200, Alexandre Julliard <[EMAIL PROTECTED]> wrote: If there's only a static lib then I guess it's fine. Is that the case on all major distros? I just dug through a bunch of distros and no one ships ffmpeg by default. That includes Fedora 4,

Re: [QUARTZ] Add FFMpeg video wrapper filter (take 3)

2005-06-13 Thread Lionel Ulmer
On Mon, Jun 13, 2005 at 06:11:14PM +0200, Alexandre Julliard wrote: > If there's only a static lib then I guess it's fine. Is that the case > on all major distros? Well, do not even try to ask about a shared-library version of FFMpeg on their development list or you will be flamed away :-)

Re: [QUARTZ] Add FFMpeg video wrapper filter (take 3)

2005-06-13 Thread Brian Vincent
On 13 Jun 2005 18:11:14 +0200, Alexandre Julliard <[EMAIL PROTECTED]> wrote: If there's only a static lib then I guess it's fine. Is that the caseon all major distros? I just dug through a bunch of distros and no one ships ffmpeg by default.  That includes Fedora 4, SuSE 9.2/9.3, Mandriva 10.1, an

Re: [QUARTZ] Add FFMpeg video wrapper filter (take 3)

2005-06-13 Thread Christian Costa
IFAIK, no... Christian > Message du 13/06/05 16:47 > De : "Mike Hearn" > A : wine-devel@winehq.com > Copie à : > Objet : Re: [QUARTZ] Add FFMpeg video wrapper filter (take 3) > > On Mon, 13 Jun 2005 14:59:37 +0200, Alexandre Julliard wrote: > > > Cha

Re: [QUARTZ] Add FFMpeg video wrapper filter (take 3)

2005-06-13 Thread Alexandre Julliard
Christian Costa <[EMAIL PROTECTED]> writes: > Well, it was meant to link with the static library only however I > admit my configure check is not that good. The FFMpeg build > the static lib by default and it's not likely you find a shared version > lying somewhere when building Wine. If there's

Re: [QUARTZ] Add FFMpeg video wrapper filter (take 3)

2005-06-13 Thread Christian Costa
e Julliard" > A : "Christian Costa" > Copie à : wine-devel@winehq.com > Objet : Re: [QUARTZ] Add FFMpeg video wrapper filter (take 3) > > Christian Costa writes: > > > Moved avcodec.h include into the #ifdef section. > > > > Changelog: > >

Re: [QUARTZ] Add FFMpeg video wrapper filter (take 3)

2005-06-13 Thread Mike Hearn
On Mon, 13 Jun 2005 14:59:37 +0200, Alexandre Julliard wrote: > > Changelog: > > Added FFMpeg video wrapper filter. > > You should dlopen the library to avoid creating a run-time dependency. I was under the impression that libavcodec did not have a stable API anyway. I thought it was simply a pla

Re: [QUARTZ] Add FFMpeg video wrapper filter (take 3)

2005-06-13 Thread Alexandre Julliard
Christian Costa <[EMAIL PROTECTED]> writes: > Moved avcodec.h include into the #ifdef section. > > Changelog: > Added FFMpeg video wrapper filter. You should dlopen the library to avoid creating a run-time dependency. -- Alexandre Julliard [EMAIL PROTECTED]

Re: [QUARTZ] Add FFMpeg video wrapper filter

2005-06-10 Thread Christian Costa
Joerg Mayer wrote: On Fri, Jun 10, 2005 at 12:19:06AM +0100, Christian Costa wrote: This wrapper only support rle, msvideo1 and mjpeg for now. To enable support for it, download lastest FFMpeg package, built it and install it. Also copy avcodec.h, rational.h and common.h into a ffmpeg direc

Re: [QUARTZ] Add FFMpeg video wrapper filter

2005-06-10 Thread Mitchell Mebane
Joerg Mayer wrote: On Fri, Jun 10, 2005 at 12:19:06AM +0100, Christian Costa wrote: This wrapper only support rle, msvideo1 and mjpeg for now. To enable support for it, download lastest FFMpeg package, built it and install it. Also copy avcodec.h, rational.h and common.h into a ff

Re: [QUARTZ] Add FFMpeg video wrapper filter

2005-06-10 Thread Joerg Mayer
On Fri, Jun 10, 2005 at 12:19:06AM +0100, Christian Costa wrote: > This wrapper only support rle, msvideo1 and mjpeg for now. > To enable support for it, download lastest FFMpeg package, built it and > install it. > Also copy avcodec.h, rational.h and common.h into a ffmpeg directory > created in

Re: [QUARTZ] Add FFMpeg video wrapper filter

2005-06-09 Thread Robert Shearman
Christian Costa wrote: Index: dlls/quartz/quartz_private.h === RCS file: /home/wine/wine/dlls/quartz/quartz_private.h,v retrieving revision 1.24 diff -u -r1.24 quartz_private.h --- dlls/quartz/quartz_private.h6 May 2005 14:3