Date: Sat, 14 Dec 2002 19:24:18 +0900 From: Norikatsu Shigemura <nork@FreeBSD.org> To: ports@FreeBSD.org Cc: hopet@ics.muni.cz, riggs@rrr.de, lioux@FreeBSD.org Subject: Re: FreeBSD Port: liveMedia-2002.10.22 Message-ID: <200212141024.gBEAOIGp004866@nd250009.gab.xdsl.ne.jp> In-Reply-To: <200212141013.gBEAD3Gp098416@nd250009.gab.xdsl.ne.jp> References: <001c01c2a2eb$81b67d70$2603fb93@kloboucek> <200212140258.gBE2w5Gp076424@nd250009.gab.xdsl.ne.jp> <200212141013.gBEAD3Gp098416@nd250009.gab.xdsl.ne.jp>
next in thread | previous in thread | raw e-mail | index | archive | help
On Sat, 14 Dec 2002 19:13:03 +0900 Norikatsu Shigemura <nork@FreeBSD.ORG> wrote: > To fix, patch following lines. Because blockMyself method was Sorry, that approch is bad. Please use following patch. - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - --- libmpdemux/demux_rtp.cpp.orig Thu Oct 17 00:15:43 2002 +++ libmpdemux/demux_rtp.cpp Sat Dec 14 19:17:10 2002 @@ -314,7 +314,11 @@ // block myself until one comes available: TaskScheduler& scheduler = bufferQueue->readSource()->envir().taskScheduler(); +#if USAGEENVIRONMENT_LIBRARY_VERSION_INT >= 1038614400 + scheduler.doEventLoop(&bufferQueue->blockingFlag); +#else scheduler.blockMyself(&bufferQueue->blockingFlag); +#endif } if (demuxer->stream->eof) return 0; // source stream has closed down - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - I'll commit this to fix compile error. To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message
Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?200212141024.gBEAOIGp004866>