On Sat, 07 Oct 2006 11:47:53 -0400 Andrew <[EMAIL PROTECTED]> wrote:
Hi, > the transcode cvs 1.0 branch complains about missing ffmpeg/avcodec.h at > the end of ./configure (same with the 1.0.2 downloadable tarball) Please note that current 1.0 CVS is a bit-exact copy of 1.0.2 release I hope to gather some time to revamp a bit 1.0 branch and put together 1.0.3 (bug fixes only) before to release new 1.1.0, in order to allow a softwe upgrade path. It remains true that moving away from 1.0.x is generally a good idea both for users and developers. > however, the 1.1.0-cvs version configures fine, with the same > exact ./configure options. But dvdrip has a maximum transcode version, so > the latter won't do for it. Moreover, there is some incompatibilities between 1.0.x and 1.1.0, so dvd::rip (as well as any other frontend) needs to be update. Better to keep on with 1.0.x yet (so the need for 1.0.3 arise). > did someone mention a patch for this recently? I couldn't find patches on > the website, Try the attached one, it's supposed to fix issues. I'll update wiki ASAP. > and wouldn't the latest CVS be free of known bugs? 1.0.x branch has no active maintainer yet. 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 */ +#if 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); }