Re: [FFmpeg-devel] [PATCH] videotoolbox: allow to enable the async decoding.

2015-10-06 Thread Clément Bœsch
On Thu, Sep 24, 2015 at 11:45:42AM +0200, Clément Bœsch wrote: > On Sun, Aug 09, 2015 at 01:11:44PM +0200, Sebastien Zwickert wrote: > > This patch allows to use the Videotoolbox API in asynchonous mode. > > Note that when using async decoding the user is responsible for > > releasing the async fra

Re: [FFmpeg-devel] [PATCH] videotoolbox: allow to enable the async decoding.

2015-09-24 Thread Clément Bœsch
On Sun, Aug 09, 2015 at 01:11:44PM +0200, Sebastien Zwickert wrote: > This patch allows to use the Videotoolbox API in asynchonous mode. > Note that when using async decoding the user is responsible for > releasing the async frame. > Moreover, an option called videotoolbox_async was added to enable

Re: [FFmpeg-devel] [PATCH] videotoolbox: allow to enable the async decoding.

2015-08-15 Thread Clément Bœsch
On Sun, Aug 09, 2015 at 01:19:04PM +0200, Hendrik Leppkes wrote: [...] > Isnt there a way to put a "handle" to the async frame into the AVFrame > somehow, which can then be used by the user code to get it from VT? > Yes that would be great; the special AVVideotoolboxAsyncFrame is kind of annoying

Re: [FFmpeg-devel] [PATCH] videotoolbox: allow to enable the async decoding.

2015-08-13 Thread Zhang Rui
2015-08-13 14:26 GMT+08:00 Clément Bœsch : > On Thu, Aug 13, 2015 at 01:07:38PM +0800, Zhang Rui wrote: >> > status = VTDecompressionSessionDecodeFrame(videotoolbox->session, >> > sample_buf, >> > - 0

Re: [FFmpeg-devel] [PATCH] videotoolbox: allow to enable the async decoding.

2015-08-12 Thread Clément Bœsch
On Thu, Aug 13, 2015 at 01:07:38PM +0800, Zhang Rui wrote: > > status = VTDecompressionSessionDecodeFrame(videotoolbox->session, > > sample_buf, > > - 0, // decodeFlags > > +

Re: [FFmpeg-devel] [PATCH] videotoolbox: allow to enable the async decoding.

2015-08-12 Thread Zhang Rui
2015-08-09 19:19 GMT+08:00 Hendrik Leppkes : > On Sun, Aug 9, 2015 at 1:11 PM, Sebastien Zwickert wrote: >> This patch allows to use the Videotoolbox API in asynchonous mode. >> Note that when using async decoding the user is responsible for >> releasing the async frame. >> Moreover, an option cal

Re: [FFmpeg-devel] [PATCH] videotoolbox: allow to enable the async decoding.

2015-08-12 Thread Zhang Rui
> status = VTDecompressionSessionDecodeFrame(videotoolbox->session, > sample_buf, > - 0, // decodeFlags > + decodeFlags, >

Re: [FFmpeg-devel] [PATCH] videotoolbox: allow to enable the async decoding.

2015-08-09 Thread wm4
On Sun, 9 Aug 2015 07:46:53 -0400 "Ronald S. Bultje" wrote: > Hi, > > On Sun, Aug 9, 2015 at 7:11 AM, Sebastien Zwickert > wrote: > > > This patch allows to use the Videotoolbox API in asynchonous mode. > > > If this is for N:M (in:out), I think this should be replaced by a > prospective avc

Re: [FFmpeg-devel] [PATCH] videotoolbox: allow to enable the async decoding.

2015-08-09 Thread Ronald S. Bultje
Hi, On Sun, Aug 9, 2015 at 7:11 AM, Sebastien Zwickert wrote: > This patch allows to use the Videotoolbox API in asynchonous mode. If this is for N:M (in:out), I think this should be replaced by a prospective avcodec async decoding API. Ronald ___ f

Re: [FFmpeg-devel] [PATCH] videotoolbox: allow to enable the async decoding.

2015-08-09 Thread wm4
On Sun, 9 Aug 2015 13:11:44 +0200 Sebastien Zwickert wrote: > This patch allows to use the Videotoolbox API in asynchonous mode. > Note that when using async decoding the user is responsible for > releasing the async frame. What does this mean? > Moreover, an option called videotoolbox_async

Re: [FFmpeg-devel] [PATCH] videotoolbox: allow to enable the async decoding.

2015-08-09 Thread Hendrik Leppkes
On Sun, Aug 9, 2015 at 1:11 PM, Sebastien Zwickert wrote: > This patch allows to use the Videotoolbox API in asynchonous mode. > Note that when using async decoding the user is responsible for > releasing the async frame. > Moreover, an option called videotoolbox_async was added to enable > async

[FFmpeg-devel] [PATCH] videotoolbox: allow to enable the async decoding.

2015-08-09 Thread Sebastien Zwickert
This patch allows to use the Videotoolbox API in asynchonous mode. Note that when using async decoding the user is responsible for releasing the async frame. Moreover, an option called videotoolbox_async was added to enable async decoding with ffmpeg CLI. --- ffmpeg.h | 1 + ff