[Ffmpeg-devel] Re: movenc.c depends on mov.c

Diego Biurrun diego
Tue Aug 1 00:20:54 CEST 2006


On Mon, Jul 31, 2006 at 11:29:35PM +0200, Baptiste Coudurier wrote:
> 
> Ramiro Polla wrote:
> > 
> > When I run "./configure --enable-memalign-hack --enable-shared
> > --disable-static --disable-decoders --disable-parsers
> > --disable-demuxers", I get an error of undefined reference to
> > `ff_mov_obj_type' and to `ff_mov_iso639_to_lang' from movenc.c while
> > linking libavcodec.
> > 
> > Yes, I do want to produce ffmpeg with no decoding support, since I will
> > create and provide the data (just like output_example does).
> > 
> > Those symbols both exist in mov.c, and are declared as externs in mov.h.
> > Since I chose not to decode anything, mov.c is not compiled, and
> > movenc.c can't find the symbols. Could the maintainers of movenc.c try
> > to fix this, please?
> > 
> > Thanks,
> > Ramiro Polla
> 
> Attached patch should fix the problem. It creates isom.c and rename
> mov.h to isom.h to hold common code between muxer and demuxer.
> 
> Further variables renaming might be adequate.
> 
> Mans, Diego, what do you think ? If it's ok could one of you please
> apply that patch ? Im not familiar with file renaming yet.

Well, file renaming is not all that hard, just do

  svn mv mov.h isom.h
  svn ci isom.h

that's all there is to it.  Of course I've left out the rest of the
changes in the example.  Be confident, you'll manage all right.

Diego




More information about the ffmpeg-devel mailing list