hd_brummy 14/03/08 21:42:20 Added: vdr-vcd-0.9_devicetrickspeed.patch Log: fixed compile with >=vdr-2.1.3, thx to E.Seifert on wrt bug 503452 (Portage version: 2.2.8-r1/cvs/Linux x86_64, signed Manifest commit with key 34C2808A)
Revision Changes Path 1.1 media-plugins/vdr-vcd/files/vdr-vcd-0.9_devicetrickspeed.patch file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/media-plugins/vdr-vcd/files/vdr-vcd-0.9_devicetrickspeed.patch?rev=1.1&view=markup plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/media-plugins/vdr-vcd/files/vdr-vcd-0.9_devicetrickspeed.patch?rev=1.1&content-type=text/plain Index: vdr-vcd-0.9_devicetrickspeed.patch =================================================================== https://bugs.gentoo.org/show_bug.cgi?id=503452 patch provided by E.Seifert --- vcd-0.9/player.c 2008-01-16 13:26:38.000000000 +0100 +++ vcd-0.9/player.c 2014-03-04 22:07:39.374281971 +0100 @@ -161,7 +161,11 @@ int sp = (Speeds[nts] > 0) ? Mult / Speeds[nts] : -Speeds[nts] * Mult; if (sp > MAX_VIDEO_SLOWMOTION) sp = MAX_VIDEO_SLOWMOTION; +#if VDRVERSNUM >= 20103 + DeviceTrickSpeed(sp,true); +#else DeviceTrickSpeed(sp); +#endif } }
