[Ffmpeg-cvslog] CVS: ffmpeg/libavcodec zmbv.c, NONE, 1.1 Makefile, 1.240, 1.241 avcodec.h, 1.450, 1.451 allcodecs.c, 1.128, 1.129

Diego Biurrun diego
Mon Feb 13 00:05:29 CET 2006


On Sun, Feb 12, 2006 at 08:01:26PM +0100, Alexander Strasser wrote:
> Diego Biurrun wrote:
> > On Sun, Feb 12, 2006 at 09:49:37AM -0800, Mike Melanson wrote:
> > > Alexander Strasser wrote:
> > > >  Is the zmbv decoder considedered to work in some cases without zlib?
> > > >If not we should somehow deactivate it in configure and remove the
> > > >#ifdefs from zmbv.c .
> > > 
> > > 	I don't think it will work without zlib but I am still documenting 
> > > it. If you know an elegant way to disable ZMBV in the build system, that 
> > > would be useful.
> > 
> > As seen in libavcodec/Makefile:
> > 
> > ifneq ($(CONFIG_MSZH_DECODER)$(CONFIG_ZLIB_DECODER)$(CONFIG_ZLIB_ENCODER),)
> >     OBJS+= lcl.o
> > endif
> > 
> > I believe that should do the trick...
> 
>   No, that is `if none of the 3 codecs in the file is activated, don't
> compile it'.

Right.  We'd need something like

  ifeq ($(CONFIG_ZMBV_DECODER)$(CONFIG_ZLIB_DECODER),yesyes)
      OBJS+= zmbv.o
  endif

Diego





More information about the ffmpeg-cvslog mailing list