On Tue, 27 Jun 2006 19:45:04 +0200
Francesco Romani <[EMAIL PROTECTED]> wrote:
> Just wait, I've runned into a similar issue and I'm investigating it.
> Maybe our configure needs a little update.
OK, looks like a symbol (FFMPEG_VERSION) that transcode's configure relies on
to detect libavcodec version was gone on recent SVN releases.
Poco male, attached there is a patch that should let the 1.0.x configure
work again (well, at least it compiles. I can't test it extensively now nor
in the near future. Anyway, It's supposed to work.).
HEAD was just updated as well.
I'll add this patch to known bugs wiki page ASAP.
Best regards,
--
Francesco Romani - Ikitt ['people always complain, no matther what you do']
IM contact : (email first, Antispam default deny!) icq://27-83-87-867
known bugs : http://www.transcoding.org/cgi-bin/transcode?Bug_Showcase
tiny homepage : http://fromani.exit1.org (see IDEAS if you want send code!)
--- configure.orig 2006-06-27 22:41:13.000000000 +0200
+++ configure 2006-06-27 22:42:12.000000000 +0200
@@ -28107,7 +28107,12 @@
printf("install ffmpeg 0.4.9-pre1 or newer, or a cvs version after 20040703");
return(1);
}
+ /* 3344640 == ((51<<16)+(9<<8)+0) == 51.9.0 */
+#ifdef LIBAVCODEC_BUILD >= 3344640
+ printf("VER=%s\n", AV_STRINGIFY(LIBAVCODEC_VERSION));
+#else
printf("VER=%s\n", FFMPEG_VERSION);
+#endif /* LIBAVCODEC_BUILD >= 51.9.0 check */
printf("BUILD=%d\n", LIBAVCODEC_BUILD);
return(0);
}