Re: [Mlt-devel] Mlt-devel Digest, Vol 105, Issue 9

2015-03-31 Thread Dan Dennedy
On Tue, Mar 31, 2015 at 4:13 AM, Mark Long wrote: > With regard to the Mutex issue that I mentioned, apparently it has been > solved in other apps by setting a ceiling on the thread priority > > int OldPrio = 0; > pthread_mutex_setprioceiling(&CritSec, 0, &OldPrio); > > I do not believe this is c

Re: [Mlt-devel] Mlt-devel Digest, Vol 105, Issue 9

2015-03-31 Thread Mark Long
With regard to the Mutex issue that I mentioned, apparently it has been solved in other apps by setting a ceiling on the thread priority int OldPrio = 0; pthread_mutex_setprioceiling(&CritSec, 0, &OldPrio);It is also noted that the issue is intermittent in other apps which matches what I am seein