Re: Information about ffmpeg compile problems on windows
Georg Seidel <[email protected]> Sun, 03 Jul 2005 11:02:36 +0200
| Newsgroups | gmane.comp.video.gephex.devel |
|---|---|
| Message-ID | <[email protected]> |
Martin Bayer wrote: >>>[email protected]/ffmpeg--cvs--1.0--patch-8 >>> >>>its from 2005-06-16. With the patch i posted at about that time gephex >>>compiles with that api. >> >>Does gephex still work with older ffmpeg versions after applying the patch? >>If not, we should make it depend on the ffmpeg version (I already did one >>change like that for seeking support). > > > No, there is a "rational" type now in the ffmpeg api and i only changed > our code to use the new interface. That is also the reason why the patch > isn't in main yet. Could you test the new ffmpeg version with that patch > on os-x and windows. We'll see if support for the old api version is > still needed on some platform. Tom improve this patch, we must make it ffmpeg-version aware. Found this in the ffmpeg-devel ml: #if LIBAVCODEC_BUILD > 4753 rate = av_q2d(stream->r_frame_rate); #else rate = stream->r_frame_rate / stream->r_frame_rate_base; #endif Georg