Re: [libav-devel] [PATCH] avconv: Move the reporting in a separate thread

2016-03-24 Thread Luca Barbato
On 19/03/16 21:38, Vittorio Giovara wrote: > On Thu, Feb 4, 2016 at 7:07 AM, Luca Barbato wrote: >> On 04/02/16 12:52, Vittorio Giovara wrote: >>> is this still needed? >> >> Yes, I'll send and update on this Friday. >> >> lu > > I might have forgotten to check, and couldn't

Re: [libav-devel] [PATCH] avconv: Move the reporting in a separate thread

2016-03-19 Thread Vittorio Giovara
On Thu, Feb 4, 2016 at 7:07 AM, Luca Barbato wrote: > On 04/02/16 12:52, Vittorio Giovara wrote: >> is this still needed? > > Yes, I'll send and update on this Friday. > > lu I might have forgotten to check, and couldn't find it in the tree, where is the new version? --

Re: [libav-devel] [PATCH] avconv: Move the reporting in a separate thread

2016-02-04 Thread Vittorio Giovara
On Wed, Jan 6, 2016 at 9:22 PM, Luca Barbato wrote: > Now the report is printed even if poll_filters() does not > return often. > --- > avconv.c | 106 > -- > avconv.h | 4 +++ > configure | 3 +- > 3 files

Re: [libav-devel] [PATCH] avconv: Move the reporting in a separate thread

2016-02-04 Thread Luca Barbato
On 04/02/16 12:52, Vittorio Giovara wrote: > is this still needed? Yes, I'll send and update on this Friday. lu ___ libav-devel mailing list libav-devel@libav.org https://lists.libav.org/mailman/listinfo/libav-devel

Re: [libav-devel] [PATCH] avconv: Move the reporting in a separate thread

2016-01-06 Thread Anton Khirnov
Quoting Luca Barbato (2016-01-04 23:32:25) > Now the report is printed even if poll_filters() does not > return often. > --- I think we can now safely make avconv depend on threading, it should be available everywhere we care about. > > avconv.c | 108 >

Re: [libav-devel] [PATCH] avconv: Move the reporting in a separate thread

2016-01-06 Thread Luca Barbato
On 06/01/16 09:49, Anton Khirnov wrote: > I think we can now safely make avconv depend on threading, it should be > available everywhere we care about. I can send a patch about it later. > This looks like about three million races. between which threads? lu

Re: [libav-devel] [PATCH] avconv: Move the reporting in a separate thread

2016-01-06 Thread Anton Khirnov
Quoting Luca Barbato (2016-01-06 13:38:07) > On 06/01/16 09:49, Anton Khirnov wrote: > > I think we can now safely make avconv depend on threading, it should be > > available everywhere we care about. > > I can send a patch about it later. > > > This looks like about three million races. > >

[libav-devel] [PATCH] avconv: Move the reporting in a separate thread

2016-01-06 Thread Luca Barbato
Now the report is printed even if poll_filters() does not return often. --- avconv.c | 106 -- avconv.h | 4 +++ configure | 3 +- 3 files changed, 68 insertions(+), 45 deletions(-) diff --git a/avconv.c b/avconv.c index

[libav-devel] [PATCH] avconv: Move the reporting in a separate thread

2016-01-04 Thread Luca Barbato
Now the report is printed even if poll_filters() does not return often. --- avconv.c | 108 +-- 1 file changed, 64 insertions(+), 44 deletions(-) diff --git a/avconv.c b/avconv.c index 6b37d6e..676e81d 100644 --- a/avconv.c +++