Re: [libav-devel] [PATCH v2] avcodec: add metadata to identify wrappers and hardware decoders

2017-12-12 Thread Luca Barbato
On 12/12/2017 11:03, wm4 wrote: Explicitly identify decoder/encoder wrappers with a common name. This saves API users from guessing by the name suffix. For example, they don't have to guess that "h264_qsv" is the h264 QSV implementation, and instead they can just check the AVCodec .codec and

[libav-devel] [PATCH] qsv: Support explicit lookahead downscaling

2017-12-12 Thread Luca Barbato
--- libavcodec/qsvenc.c | 4 libavcodec/qsvenc.h | 13 + 2 files changed, 17 insertions(+) diff --git a/libavcodec/qsvenc.c b/libavcodec/qsvenc.c index 5eacf3ca88..24d9ec4d71 100644 --- a/libavcodec/qsvenc.c +++ b/libavcodec/qsvenc.c @@ -604,6 +604,10 @@

[libav-devel] [PATCH v2] avcodec: add metadata to identify wrappers and hardware decoders

2017-12-12 Thread wm4
Explicitly identify decoder/encoder wrappers with a common name. This saves API users from guessing by the name suffix. For example, they don't have to guess that "h264_qsv" is the h264 QSV implementation, and instead they can just check the AVCodec .codec and .wrapper_name fields. Explicitly

Re: [libav-devel] [PATCH] checkasm: Use LOCAL_ALIGNED for aligned variables on the stack

2017-12-12 Thread Luca Barbato
On 11/12/2017 21:26, Martin Storsjö wrote: This fixes fate-checkasm-hevc_mc on ARMCC 5.0 after adding NEON HEVC MC assembly. --- tests/checkasm/hevc_mc.c | 10 +- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/tests/checkasm/hevc_mc.c b/tests/checkasm/hevc_mc.c index

Re: [libav-devel] [PATCH] qsv: Support explicit lookahead downscaling

2017-12-12 Thread Diego Biurrun
On Tue, Dec 12, 2017 at 02:27:56PM +, Luca Barbato wrote: > --- > libavcodec/qsvenc.c | 4 > libavcodec/qsvenc.h | 13 + > 2 files changed, 17 insertions(+) > > --- a/libavcodec/qsvenc.h > +++ b/libavcodec/qsvenc.h > @@ -64,6 +71,11 @@ > { "unset", NULL, 0,

Re: [libav-devel] [PATCH] qsv: Support explicit lookahead downscaling

2017-12-12 Thread Li, Zhong
> From: libav-devel [mailto:libav-devel-boun...@libav.org] On Behalf Of Luca > Barbato > Sent: Tuesday, December 12, 2017 10:28 PM > To: libav-devel@libav.org > Subject: [libav-devel] [PATCH] qsv: Support explicit lookahead downscaling > > --- > libavcodec/qsvenc.c | 4 >

Re: [libav-devel] [PATCH] qsv: Support explicit lookahead downscaling

2017-12-12 Thread Maxym Dmytrychenko
comment: :) patch:OK On Tue, Dec 12, 2017 at 4:04 PM, Diego Biurrun wrote: > On Tue, Dec 12, 2017 at 02:27:56PM +, Luca Barbato wrote: > > --- > > libavcodec/qsvenc.c | 4 > > libavcodec/qsvenc.h | 13 + > > 2 files changed, 17 insertions(+) > >