Re: [Mlt-devel] future of frame-threading in MLT

2020-12-08 Thread Dan Dennedy
On Tue, Dec 8, 2020 at 7:14 PM Brian Matherly wrote: > > > As a reminder, frame threading is when > > abs(consumer.get_int("real_time")) > 1. There are some problems with it. > > 1. sometimes there is a crash > > 2. image artifacts due to race conditions > > I think that the main reason for this

Re: [Mlt-devel] future of frame-threading in MLT

2020-12-08 Thread Brian Matherly via Mlt-devel
As a reminder, frame threading is when abs(consumer.get_int("real_time")) > 1. There are some problems with it. 1. sometimes there is a crash 2. image artifacts due to race conditions I think that the main reason for this is that we try to allow each service instance to be running get_image(

[Mlt-devel] future of frame-threading in MLT

2020-12-08 Thread Dan Dennedy
In a pull request, Vincent raised an interesting point regarding frame-threading in MLT: https://github.com/mltframework/mlt/pull/621#issuecomment-741087704 As a reminder, frame threading is when abs(consumer.get_int("real_time")) > 1. There are some problems with it. 1. sometimes there is a crash