Re: [FFmpeg-devel] [PATCH] avcodec: Add flag for experimental HWAccels and use it for VDPAU/HEVC

2015-06-26 Thread Philip Langdale
On Fri, 26 Jun 2015 23:10:43 +0200 Michael Niedermayer wrote: > On Fri, Jun 26, 2015 at 08:45:09AM -0700, Philip Langdale wrote: > > This HWAccel isn't really usable right now due to an nvidia driver > > bug, so we don't want it selected by default. > > > > HWAccels have a capabilities field and

Re: [FFmpeg-devel] [PATCH] avcodec: Add flag for experimental HWAccels and use it for VDPAU/HEVC

2015-06-26 Thread Michael Niedermayer
On Fri, Jun 26, 2015 at 08:45:09AM -0700, Philip Langdale wrote: > This HWAccel isn't really usable right now due to an nvidia driver bug, > so we don't want it selected by default. > > HWAccels have a capabilities field and there's a comment about flags, > but no flags exist today, so let's add o

Re: [FFmpeg-devel] [PATCH] avcodec: Add flag for experimental HWAccels and use it for VDPAU/HEVC

2015-06-26 Thread Philip Langdale
On 2015-06-26 09:09, wm4 wrote: diff --git a/libavcodec/version.h b/libavcodec/version.h index eff8820..1073588 100644 --- a/libavcodec/version.h +++ b/libavcodec/version.h @@ -29,7 +29,7 @@ #include "libavutil/version.h" #define LIBAVCODEC_VERSION_MAJOR 56 -#define LIBAVCODEC_VERSION_MINOR 4

Re: [FFmpeg-devel] [PATCH] avcodec: Add flag for experimental HWAccels and use it for VDPAU/HEVC

2015-06-26 Thread wm4
On Fri, 26 Jun 2015 08:45:09 -0700 Philip Langdale wrote: > This HWAccel isn't really usable right now due to an nvidia driver bug, > so we don't want it selected by default. > > HWAccels have a capabilities field and there's a comment about flags, > but no flags exist today, so let's add one fo

[FFmpeg-devel] [PATCH] avcodec: Add flag for experimental HWAccels and use it for VDPAU/HEVC

2015-06-26 Thread Philip Langdale
This HWAccel isn't really usable right now due to an nvidia driver bug, so we don't want it selected by default. HWAccels have a capabilities field and there's a comment about flags, but no flags exist today, so let's add one for experimental hwaccels. Signed-off-by: Philip Langdale --- libavco