Re: [libav-devel] [PATCH 0/3] AviSynth+ pix_fmt updates

2016-10-28 Thread Stephen Hutchinson
On 10/27/2016 11:37 PM, Vittorio Giovara wrote: yeah 64 bits formats work only in pass-through, so you cannot convert them or output anything in them The output restriction is completely internal to Libav (avplay, etc.), right? I did verify that linking mpv against a build of Libav including

[libav-devel] [PATCH] doc/general.text: add note about grabbing correct AviSynth+ header

2016-10-28 Thread Stephen Hutchinson
--- doc/general.texi | 13 + 1 file changed, 13 insertions(+) diff --git a/doc/general.texi b/doc/general.texi index 1708871..943fa5f 100644 --- a/doc/general.texi +++ b/doc/general.texi @@ -182,6 +182,19 @@ provides a GNU-style Makefile which can install just the headers using @cod

[libav-devel] [PATCH] avconv: support parsing bitstream filter options

2016-10-28 Thread James Almer
Example usage: avconv -i INPUT -bsf filter[=opt1=val1:opt2=val2] OUTPUT Signed-off-by: James Almer --- avconv.c | 15 ++- avconv.h | 1 - avconv_opt.c | 46 +- 3 files changed, 39 insertions(+), 23 deletions(-) diff --git

Re: [libav-devel] [libav-commits] aac: Wait to know the channels before allocating frame

2016-10-28 Thread Diego Biurrun
On Mon, Jan 25, 2016 at 05:36:55AM +0100, Luca Barbato wrote: > Module: libav > Branch: release/11 > Commit: aeb9c8627d5e475628963ee27be8f122bd7b5e2f > > Author:Luca Barbato > Committer: Luca Barbato > Date: Thu Jun 4 10:19:50 2015 +0200 > > aac: Wait to know the channels before allo

Re: [libav-devel] [PATCH] Add support for CUVID decode

2016-10-28 Thread Diego Biurrun
On Thu, Oct 27, 2016 at 11:58:50AM +, Ruta Gadkari wrote: > --- a/configure > +++ b/configure > @@ -1223,6 +1224,7 @@ HWACCEL_LIBRARY_NONFREE_LIST=" > " > HWACCEL_LIBRARY_LIST=" > $HWACCEL_LIBRARY_NONFREE_LIST > +cuvid Isn't cuvid nonfree? > @@ -2125,8 +2128,10 @@ vda_deps="VideoDe

Re: [libav-devel] [PATCH] Add support for CUVID decode

2016-10-28 Thread Hendrik Leppkes
On Thu, Oct 27, 2016 at 8:58 PM, Diego Biurrun wrote: > On Thu, Oct 27, 2016 at 11:58:50AM +, Ruta Gadkari wrote: >> From 31f2ef09647f120f3ad245db0ad4f5339171ff57 Mon Sep 17 00:00:00 2001 >> From: rgadkari_test > > Looks like your Git is misconfigured. > Also, this is an implementation writt

Re: [libav-devel] [PATCH] Add support for CUVID decode

2016-10-28 Thread Luca Barbato
On 27/10/2016 13:58, Ruta Gadkari wrote: > This patch adds support for hardware accelerated CUVID decode in Libav. > I wanted to test it a bit before giving you a full review but I couldn't do that today and yesterday. Hopefully I'll get through it during the weekend. Thank you a lot =) lu ___

Re: [libav-devel] [PATCH 6/9] id3v2: Adjust signedness of sscanf format strings

2016-10-28 Thread Diego Biurrun
On Thu, Oct 27, 2016 at 08:54:57PM +0200, Diego Biurrun wrote: > libavformat/id3v2.c:279:9: warning: format ‘%d’ expects argument of type ‘int > *’, but argument 3 has type ‘unsigned int *’ [-Wformat=] > libavformat/id3v2.c:279:9: warning: format ‘%d’ expects argument of type ‘int > *’, but argum

Re: [libav-devel] [PATCH 7/9] dash: Use correct POSIX scanf conversion specifier

2016-10-28 Thread Diego Biurrun
On Thu, Oct 27, 2016 at 08:54:58PM +0200, Diego Biurrun wrote: > --- > > Might be squashed as well. > > libavformat/dashenc.c | 2 +- > 1 file changed, 1 insertion(+), 1 deletion(-) OKed by Rémi on IRC. Diego ___ libav-devel mailing list libav-devel@

Re: [libav-devel] [PATCH 5/9] srt: Adjust signedness of sscanf format strings

2016-10-28 Thread Diego Biurrun
On Thu, Oct 27, 2016 at 08:54:56PM +0200, Diego Biurrun wrote: > Fixes several warnings of the type > libavcodec/srtdec.c:197:24: warning: format ‘%u’ expects argument of type > ‘unsigned int *’, but argument 11 has type ‘int *’ [-Wformat=] > --- > libavcodec/srtdec.c | 2 +- > 1 file changed, 1

Re: [libav-devel] [PATCH 1/9] Adjust printf conversion specifiers to match variable signedness

2016-10-28 Thread Diego Biurrun
On Thu, Oct 27, 2016 at 08:54:52PM +0200, Diego Biurrun wrote: > --- > libavcodec/dnxhddec.c | 10 +- > libavcodec/dvdec.c | 2 +- > libavcodec/dxv.c | 2 +- > libavcodec/fraps.c | 2 +- > libavcodec/txd.c | 4 ++-- > libavformat/mov.c

Re: [libav-devel] [PATCH 3/9] Use POSIX printf conversion specifiers where appropriate

2016-10-28 Thread Diego Biurrun
On Thu, Oct 27, 2016 at 08:54:54PM +0200, Diego Biurrun wrote: > --- > libavcodec/bitstream.c | 2 +- > libavcodec/dnxhddec.c | 10 +- > libavcodec/dvdec.c | 2 +- > libavcodec/dvdsubdec.c | 9 + > libavcodec/dxv.c| 3 ++- > libavformat/mov.c | 25 +++

Re: [libav-devel] [PATCH 4/9] dxtory: Drop nonsense POSIX printf conversion specifiers for standard types

2016-10-28 Thread Diego Biurrun
On Thu, Oct 27, 2016 at 08:54:55PM +0200, Diego Biurrun wrote: > --- > libavcodec/dxtory.c | 6 +++--- > 1 file changed, 3 insertions(+), 3 deletions(-) OKed by Rémi on IRC. Diego ___ libav-devel mailing list libav-devel@libav.org https://lists.libav.o

Re: [libav-devel] [PATCH 2/9] hap: Adjust printf length modifiers to match variable types

2016-10-28 Thread Diego Biurrun
On Thu, Oct 27, 2016 at 08:54:53PM +0200, Diego Biurrun wrote: > libavcodec/hapenc.c:121:20: warning: format ‘%lu’ expects argument of type > ‘long unsigned int’, but argument 4 has type ‘size_t {aka unsigned int}’ > [-Wformat=] > libavcodec/hapenc.c:121:20: warning: format ‘%lu’ expects argument

Re: [libav-devel] [PATCH 3/3] doc/general.text: add note about grabbing correct AviSynth+ header

2016-10-28 Thread Diego Biurrun
On Wed, Oct 26, 2016 at 10:54:20PM -0400, Stephen Hutchinson wrote: > --- > doc/general.texi | 12 > 1 file changed, 12 insertions(+) > > diff --git a/doc/general.texi b/doc/general.texi > index 1708871..7602c9a 100644 > --- a/doc/general.texi > +++ b/doc/general.texi > @@ -182,6 +18

Re: [libav-devel] [PATCH 3/3] doc/general.text: add note about grabbing correct AviSynth+ header

2016-10-28 Thread Luca Barbato
On 27/10/2016 04:54, Stephen Hutchinson wrote: > --- > doc/general.texi | 12 > 1 file changed, 12 insertions(+) > > diff --git a/doc/general.texi b/doc/general.texi > index 1708871..7602c9a 100644 > --- a/doc/general.texi > +++ b/doc/general.texi > @@ -182,6 +182,18 @@ provides a GN

[libav-devel] [PATCH 5/8] qsv: Add VC-1 decoder

2016-10-28 Thread Mark Thompson
It uses the same code as the MPEG-2 decoder, so the file is renamed to contain all "other" (that is, not H.26[45]) codecs. --- The same patch regenerated with renames = copy, as suggested by Diego. configure | 3 ++ libavcodec/Makefile

Re: [libav-devel] [PATCH] omx: Add HEVC support

2016-10-28 Thread Martin Storsjö
On Thu, 27 Oct 2016, Vittorio Giovara wrote: On Sat, Aug 20, 2016 at 10:12 AM, Luca Barbato wrote: --- configure | 1 + libavcodec/allcodecs.c | 1 + libavcodec/omx.c | 24 3 files changed, 26 insertions(+) probably ok Yes, and my previous com