Re: [libav-devel] [PATCH 1/9] lavc: Add codec metadata to indicate hardware support

2017-12-11 Thread Luca Barbato
On 11/12/2017 00:05, Mark Thompson wrote: --- doc/APIchanges | 3 +++ libavcodec/avcodec.h | 74 libavcodec/hwaccel.h | 18 + libavcodec/utils.c | 12 + 4 files changed, 107 insertions(+) The set looks (stil

Re: [libav-devel] [PATCH 1/9] lavc: Add codec metadata to indicate hardware support

2017-12-11 Thread wm4
On Sun, 10 Dec 2017 23:05:39 + Mark Thompson wrote: > --- > doc/APIchanges | 3 +++ > libavcodec/avcodec.h | 74 > > libavcodec/hwaccel.h | 18 + > libavcodec/utils.c | 12 + > 4 files changed, 107 insertions(

[libav-devel] [PATCH 1/9] lavc: Add codec metadata to indicate hardware support

2017-12-10 Thread Mark Thompson
--- doc/APIchanges | 3 +++ libavcodec/avcodec.h | 74 libavcodec/hwaccel.h | 18 + libavcodec/utils.c | 12 + 4 files changed, 107 insertions(+) diff --git a/doc/APIchanges b/doc/APIchanges index a7ecbcdaa..9d8c772

Re: [libav-devel] [PATCH 1/9] lavc: Add codec metadata to indicate hardware support

2017-10-30 Thread Anton Khirnov
Quoting Mark Thompson (2017-10-26 01:18:39) > --- > Rebased on the frame parameter changes, and incorporating all review comments > from last time. > > > doc/APIchanges | 3 +++ > libavcodec/avcodec.h | 74 > > libavcodec/hwaccel.h |

Re: [libav-devel] [PATCH 1/9] lavc: Add codec metadata to indicate hardware support

2017-10-27 Thread wm4
On Fri, 27 Oct 2017 12:37:18 +0100 Mark Thompson wrote: > >> Can you suggest the sort of names you're thinking of here? I think this > >> might depend on (3) as well to be useful. > > > > I was thinking maybe "hwaccel_vaapi" etc. > > I feel like this sort of name is trivially generated fr

Re: [libav-devel] [PATCH 1/9] lavc: Add codec metadata to indicate hardware support

2017-10-27 Thread Mark Thompson
On 26/10/17 13:56, wm4 wrote: > On Thu, 26 Oct 2017 13:27:01 +0100 > Mark Thompson wrote: > >> On 26/10/17 11:36, wm4 wrote: >>> On Thu, 26 Oct 2017 00:18:39 +0100 >>> Mark Thompson wrote: >>> --- Rebased on the frame parameter changes, and incorporating all review comments fr

Re: [libav-devel] [PATCH 1/9] lavc: Add codec metadata to indicate hardware support

2017-10-26 Thread wm4
On Thu, 26 Oct 2017 13:27:01 +0100 Mark Thompson wrote: > On 26/10/17 11:36, wm4 wrote: > > On Thu, 26 Oct 2017 00:18:39 +0100 > > Mark Thompson wrote: > > > >> --- > >> Rebased on the frame parameter changes, and incorporating all review > >> comments from last time. > >> > >> > >> doc/API

Re: [libav-devel] [PATCH 1/9] lavc: Add codec metadata to indicate hardware support

2017-10-26 Thread Mark Thompson
On 26/10/17 11:36, wm4 wrote: > On Thu, 26 Oct 2017 00:18:39 +0100 > Mark Thompson wrote: > >> --- >> Rebased on the frame parameter changes, and incorporating all review >> comments from last time. >> >> >> doc/APIchanges | 3 +++ >> libavcodec/avcodec.h | 74 >> +++

Re: [libav-devel] [PATCH 1/9] lavc: Add codec metadata to indicate hardware support

2017-10-26 Thread wm4
On Thu, 26 Oct 2017 00:18:39 +0100 Mark Thompson wrote: > --- > Rebased on the frame parameter changes, and incorporating all review comments > from last time. > > > doc/APIchanges | 3 +++ > libavcodec/avcodec.h | 74 > > libavcode

[libav-devel] [PATCH 1/9] lavc: Add codec metadata to indicate hardware support

2017-10-25 Thread Mark Thompson
--- Rebased on the frame parameter changes, and incorporating all review comments from last time. doc/APIchanges | 3 +++ libavcodec/avcodec.h | 74 libavcodec/hwaccel.h | 18 + libavcodec/utils.c | 12 + 4 files

Re: [libav-devel] [PATCH 1/9] lavc: Add codec metadata to indicate hardware support

2017-10-05 Thread wm4
On Wed, 4 Oct 2017 23:30:51 +0100 Mark Thompson wrote: > --- > Bikeshed painters welcome for naming. > /** > + * Retrieve supported hardware configurations for a codec. > + */ > +const AVCodecHWConfig *avcodec_get_hw_config(const AVCodec *codec, int > index); Should explicitly say that ou

[libav-devel] [PATCH 1/9] lavc: Add codec metadata to indicate hardware support

2017-10-04 Thread Mark Thompson
--- Bikeshed painters welcome for naming. doc/APIchanges | 3 +++ libavcodec/avcodec.h | 70 libavcodec/hwaccel.h | 18 ++ libavcodec/utils.c | 12 + 4 files changed, 103 insertions(+) diff --git a/doc/APIchanges