Re: [FFmpeg-devel] [RFC] Event loop

2021-01-04 Thread Xiang Xiao
Nicolas, thank you for bringing up this topic. My team is working on similar functionality: the event loop is the central point to integrate protocol, demux/mux, decoder/encoder, avfilter and avdevice to form a complete multimedia subsystem(like DirectShow or GStreamer). Without the builtin event l

Re: [FFmpeg-devel] [WIP] Event loop

2021-08-16 Thread Xiang Xiao
On Sat, Jul 17, 2021 at 8:09 PM Nicolas George wrote: > Hi. > > Some time ago, I started working on the project to update libavformat's > protocols to run with a proper event loop, instead of the several > half-assed > event loops we have here and there in the code. > > I started by writing the d

Re: [FFmpeg-devel] [WIP] Event loop

2021-08-17 Thread Xiang Xiao
On Tue, Aug 17, 2021 at 3:58 PM Nicolas George wrote: > Xiang Xiao (12021-08-17): > > Nicolas, do you have any more progress? I am very interested in your > > proposal and want to test your change in our special device. > > We are building an audio framework on top of

Re: [FFmpeg-devel] Plans for libavfilter

2021-09-16 Thread Xiang Xiao
We are facing similar issues after working with libavfilter for more than one year. We are implementing a private solution for: - Partial graph configuration - Partial graph re-configuration - Global running API It's glad to see other people have the same feeling of the shortcoming desig