Re: [FFmpeg-devel] [PATCH] ffprobe: Support adding av_log output to frames

2017-03-27 Thread Michael Niedermayer
On Mon, Dec 05, 2016 at 09:30:12AM +0100, Stefano Sabatini wrote: > On date Thursday 2016-12-01 22:21:17 +0100, Michael Niedermayer encoded: > > On Tue, Jun 14, 2016 at 05:55:47PM +0200, Stefano Sabatini wrote: > > > On date Wednesday 2016-06-08 18:20:39 +0200, Michael Niedermayer encoded: > > > >

Re: [FFmpeg-devel] [PATCH] ffprobe: Support adding av_log output to frames

2016-12-05 Thread Stefano Sabatini
On date Thursday 2016-12-01 22:21:17 +0100, Michael Niedermayer encoded: > On Tue, Jun 14, 2016 at 05:55:47PM +0200, Stefano Sabatini wrote: > > On date Wednesday 2016-06-08 18:20:39 +0200, Michael Niedermayer encoded: > > > On Sun, Jun 05, 2016 at 12:56:08PM +0200, Stefano Sabatini wrote: > > > >

Re: [FFmpeg-devel] [PATCH] ffprobe: Support adding av_log output to frames

2016-12-01 Thread Michael Niedermayer
On Tue, Jun 14, 2016 at 05:55:47PM +0200, Stefano Sabatini wrote: > On date Wednesday 2016-06-08 18:20:39 +0200, Michael Niedermayer encoded: > > On Sun, Jun 05, 2016 at 12:56:08PM +0200, Stefano Sabatini wrote: > > > On date Tuesday 2016-05-31 21:23:27 +0200, Michael Niedermayer encoded: > > > > a

Re: [FFmpeg-devel] [PATCH] ffprobe: Support adding av_log output to frames

2016-06-14 Thread Stefano Sabatini
On date Wednesday 2016-06-08 18:20:39 +0200, Michael Niedermayer encoded: > On Sun, Jun 05, 2016 at 12:56:08PM +0200, Stefano Sabatini wrote: > > On date Tuesday 2016-05-31 21:23:27 +0200, Michael Niedermayer encoded: > > > adding demuxer and other logs should be easy > > > This forces single threa

Re: [FFmpeg-devel] [PATCH] ffprobe: Support adding av_log output to frames

2016-06-08 Thread James Almer
On 6/8/2016 1:49 PM, Michael Niedermayer wrote: > On Wed, Jun 08, 2016 at 12:04:44AM -0300, James Almer wrote: >> On 5/31/2016 4:23 PM, Michael Niedermayer wrote: >>> adding demuxer and other logs should be easy >>> This forces single threaded decoding for simplicity >>> It also requires pthreads,

Re: [FFmpeg-devel] [PATCH] ffprobe: Support adding av_log output to frames

2016-06-08 Thread Dave Rice
> On Jun 8, 2016, at 12:30 PM, Michael Niedermayer > wrote: > > On Tue, Jun 07, 2016 at 08:06:35PM -0400, Dave Rice wrote: >> >>> On May 31, 2016, at 3:23 PM, Michael Niedermayer >>> wrote: >>> >>> adding demuxer and other logs should be easy >>> This forces single threaded decoding for sim

Re: [FFmpeg-devel] [PATCH] ffprobe: Support adding av_log output to frames

2016-06-08 Thread Michael Niedermayer
On Wed, Jun 08, 2016 at 12:04:44AM -0300, James Almer wrote: > On 5/31/2016 4:23 PM, Michael Niedermayer wrote: > > adding demuxer and other logs should be easy > > This forces single threaded decoding for simplicity > > It also requires pthreads, this could be avoided either with > > some lockless

Re: [FFmpeg-devel] [PATCH] ffprobe: Support adding av_log output to frames

2016-06-08 Thread Michael Niedermayer
On Tue, Jun 07, 2016 at 08:06:35PM -0400, Dave Rice wrote: > > > On May 31, 2016, at 3:23 PM, Michael Niedermayer > > wrote: > > > > adding demuxer and other logs should be easy > > This forces single threaded decoding for simplicity > > It also requires pthreads, this could be avoided either w

Re: [FFmpeg-devel] [PATCH] ffprobe: Support adding av_log output to frames

2016-06-08 Thread Michael Niedermayer
On Sun, Jun 05, 2016 at 12:56:08PM +0200, Stefano Sabatini wrote: > On date Tuesday 2016-05-31 21:23:27 +0200, Michael Niedermayer encoded: > > adding demuxer and other logs should be easy > > This forces single threaded decoding for simplicity > > It also requires pthreads, this could be avoided e

Re: [FFmpeg-devel] [PATCH] ffprobe: Support adding av_log output to frames

2016-06-07 Thread James Almer
On 5/31/2016 4:23 PM, Michael Niedermayer wrote: > adding demuxer and other logs should be easy > This forces single threaded decoding for simplicity > It also requires pthreads, this could be avoided either with > some lockless tricks or simply by assuming av_log would never be called from > anoth

Re: [FFmpeg-devel] [PATCH] ffprobe: Support adding av_log output to frames

2016-06-07 Thread Dave Rice
> On May 31, 2016, at 3:23 PM, Michael Niedermayer > wrote: > > adding demuxer and other logs should be easy > This forces single threaded decoding for simplicity > It also requires pthreads, this could be avoided either with > some lockless tricks or simply by assuming av_log would never be ca

Re: [FFmpeg-devel] [PATCH] ffprobe: Support adding av_log output to frames

2016-06-05 Thread Stefano Sabatini
On date Tuesday 2016-05-31 21:23:27 +0200, Michael Niedermayer encoded: > adding demuxer and other logs should be easy > This forces single threaded decoding for simplicity > It also requires pthreads, this could be avoided either with > some lockless tricks or simply by assuming av_log would never

Re: [FFmpeg-devel] [PATCH] ffprobe: Support adding av_log output to frames

2016-05-31 Thread Dave Rice
> On May 31, 2016, at 3:23 PM, Michael Niedermayer > wrote: > > adding demuxer and other logs should be easy > This forces single threaded decoding for simplicity > It also requires pthreads, this could be avoided either with > some lockless tricks or simply by assuming av_log would never be ca

[FFmpeg-devel] [PATCH] ffprobe: Support adding av_log output to frames

2016-05-31 Thread Michael Niedermayer
adding demuxer and other logs should be easy This forces single threaded decoding for simplicity It also requires pthreads, this could be avoided either with some lockless tricks or simply by assuming av_log would never be called from another thread. doc/ffprobe.xsd update missing (TODO & help wel