Re: [Libav-user] Build of ffmpeg library with libx264 support for QNX

2013-07-12 Thread Pavel Vazharov
Hi, Everything builds fine with --disable-ffserver switch. Thanks again. ___ Libav-user mailing list Libav-user@ffmpeg.org http://ffmpeg.org/mailman/listinfo/libav-user

Re: [Libav-user] Build of ffmpeg library with libx264 support for QNX

2013-07-12 Thread Carl Eugen Hoyos
Pavel Vazharov pvazharov@... writes: Everything builds fine with --disable-ffserver switch. Consider running fate now, you need rsync installed, then run: $ make SAMPLES=fate-suite fate-rsync $ make SAMPLES=fate-suite fate Or, if you don't feel like downloading the samples: $ make fate Carl

[Libav-user] ffmpeg 2.0 aacdec.c depends on ape?

2013-07-12 Thread John Orr
The ffmpeg 2.0 version of libavformat\aacdec.c now contains some reference to APE. In includes apetag.h and calls ff_ape_parse_tag(). It did not do that in ffmpeg 1.2. When I tried to upgrade from 1.2 to 2.0, I found I had a link failure. When I compile ffmpeg for my own purposes, I usally

Re: [Libav-user] ffmpeg 2.0 aacdec.c depends on ape?

2013-07-12 Thread Paul B Mahol
On 7/12/13, John Orr john@scala.com wrote: The ffmpeg 2.0 version of libavformat\aacdec.c now contains some reference to APE. In includes apetag.h and calls ff_ape_parse_tag(). It did not do that in ffmpeg 1.2. When I tried to upgrade from 1.2 to 2.0, I found I had a link failure. When

Re: [Libav-user] ffmpeg 2.0 aacdec.c depends on ape?

2013-07-12 Thread Carl Eugen Hoyos
John Orr john.orr@... writes: The ffmpeg 2.0 version of libavformat\aacdec.c now contains some reference to APE. In includes apetag.h and calls ff_ape_parse_tag(). It did not do that in ffmpeg 1.2. Yes, we do try to improve FFmpeg between releases;-)) When I tried to upgrade from 1.2

Re: [Libav-user] ffmpeg 2.0 aacdec.c depends on ape?

2013-07-12 Thread John Orr
On 7/12/2013 2:44 PM, Carl Eugen Hoyos wrote: Please at least provide your configure line. OK, but it's large: --cpu=i686 --enable-shared --disable-iconv --disable-zlib --disable-bzlib --disable-swscale --disable-avfilter --disable-everything --disable-doc --disable-htmlpages

Re: [Libav-user] ffmpeg 2.0 aacdec.c depends on ape?

2013-07-12 Thread Carl Eugen Hoyos
John Orr john.orr@... writes: LD libavformat/avformatmm-55.dll Creating library file: libavformat/libavformatmm.dll.a libavformat/apetag.o: In function `ape_tag_read_field': h:\src\ffmpeg2_0/libavformat/apetag.c:73: undefined reference to `_ff_guess_image2_codec' Should be fixed,

Re: [Libav-user] ffmpeg 2.0 aacdec.c depends on ape?

2013-07-12 Thread John Orr
On 7/12/2013 3:31 PM, Carl Eugen Hoyos wrote: John Orr john.orr@... writes: LD libavformat/avformatmm-55.dll Creating library file: libavformat/libavformatmm.dll.a libavformat/apetag.o: In function `ape_tag_read_field': h:\src\ffmpeg2_0/libavformat/apetag.c:73: undefined reference to

Re: [Libav-user] ffmpeg 2.0 aacdec.c depends on ape?

2013-07-12 Thread Carl Eugen Hoyos
John Orr john.orr@... writes: And note that --disable-everything disables most (all) of the things that you disable explicitely. At one point I had trouble with some component being enabled that I didn't expect and I went overkill and added those extra disable directives. I suspect