Re: [FFmpeg-devel] [PATCH] avfilter/avf_showcqt: cqt_calc optimization on x86

2016-06-06 Thread James Almer
On 6/4/2016 4:36 AM, Muhammad Faiz wrote: > benchmark on x86_64 > cqt_time: > plain = 3.292 s > SSE = 1.640 s > SSE3 = 1.631 s > AVX = 1.395 s > FMA3 = 1.271 s > FMA4 = not available Try using the START_TIMER and STOP_TIMER macros to wrap the s->cqt_calc call in libavfilter/avf_showcqt.c It

Re: [FFmpeg-devel] [PATCH] avfilter/avf_showcqt: cqt_calc optimization on x86

2016-06-06 Thread James Almer
On 6/6/2016 11:49 PM, Michael Niedermayer wrote: > On Tue, Jun 07, 2016 at 08:07:45AM +0700, Muhammad Faiz wrote: >> On Sat, Jun 4, 2016 at 2:36 PM, Muhammad Faiz wrote: >>> benchmark on x86_64 >>> cqt_time: >>> plain = 3.292 s >>> SSE = 1.640 s >>> SSE3 = 1.631 s >>> AVX = 1.395 s >>> FMA3

Re: [FFmpeg-devel] [PATCH] avfilter/avf_showcqt: cqt_calc optimization on x86

2016-06-06 Thread Michael Niedermayer
On Tue, Jun 07, 2016 at 08:07:45AM +0700, Muhammad Faiz wrote: > On Sat, Jun 4, 2016 at 2:36 PM, Muhammad Faiz wrote: > > benchmark on x86_64 > > cqt_time: > > plain = 3.292 s > > SSE = 1.640 s > > SSE3 = 1.631 s > > AVX = 1.395 s > > FMA3 = 1.271 s > > FMA4 = not available > > > > untested

Re: [FFmpeg-devel] [PATCH v2 1/2] avcodec/cuvid: add cuvid decoder

2016-06-06 Thread Andrey Turkin
2016-06-07 1:08 GMT+03:00 Timo Rothenpieler : > +if (ctx->cudecoder) { > +av_log(avctx, AV_LOG_ERROR, "re-initializing decoder is not > supported\n"); > +ctx->internal_error = AVERROR(EINVAL); > +return 0; > +} > + > +if (hwframe_ctx->pool) { > +av_log(a

Re: [FFmpeg-devel] [PATCH v2 2/2] ffmpeg: Add cuvid hwaccel support

2016-06-06 Thread Andrey Turkin
2016-06-07 1:08 GMT+03:00 Timo Rothenpieler : > +ost->enc_ctx->hw_frames_ctx = av_buffer_ref(ctx->hw_frames_ctx); > +ost->enc_ctx->pix_fmt = AV_PIX_FMT_CUDA; > + > +if (!ist->hwaccel_ctx) { > +ist->hwaccel_ctx = ctx; > +ist->hw_frames_ctx = ctx->hw_frames_ctx; > +

Re: [FFmpeg-devel] [PATCH] avfilter/avf_showcqt: cqt_calc optimization on x86

2016-06-06 Thread Muhammad Faiz
On Sat, Jun 4, 2016 at 2:36 PM, Muhammad Faiz wrote: > benchmark on x86_64 > cqt_time: > plain = 3.292 s > SSE = 1.640 s > SSE3 = 1.631 s > AVX = 1.395 s > FMA3 = 1.271 s > FMA4 = not available > > untested on x86_32 > > Signed-off-by: Muhammad Faiz > --- > libavfilter/avf_showcqt.c

Re: [FFmpeg-devel] [PATCH] avfilter/af_firequalizer: add zero_phase option

2016-06-06 Thread Muhammad Faiz
On Mon, Jun 6, 2016 at 6:46 AM, Muhammad Faiz wrote: > simply by substracting pts to compensate delay > also handle AV_NOPTS_VALUE > > Signed-off-by: Muhammad Faiz > --- > doc/filters.texi | 8 ++-- > libavfilter/af_firequalizer.c | 9 - > libavfilter/version.h |

Re: [FFmpeg-devel] [PATCH] lavf/os_support.h: Fix for unicode filenames on windows.

2016-06-06 Thread Matt Oliver
On 6 June 2016 at 19:55, Hendrik Leppkes wrote: > On Mon, Jun 6, 2016 at 11:34 AM, Matt Oliver wrote: > > On 6 June 2016 at 19:27, Hendrik Leppkes wrote: > > > >> On Mon, Jun 6, 2016 at 9:12 AM, Matt Oliver > wrote: > >> > Fixes #819 #5256 #5281 > >> > --- > >> > libavformat/file.c | 4

Re: [FFmpeg-devel] [PATCH] web/contact: Point to the Code of conduct

2016-06-06 Thread Michael Niedermayer
On Mon, Jun 06, 2016 at 02:35:13PM -0800, Lou Logan wrote: > On Mon, 6 Jun 2016 23:50:01 +0200, Michael Niedermayer wrote: > > > Suggested-by: Felt, Patrick > > Signed-off-by: Michael Niedermayer > > --- > > src/contact |3 ++- > > 1 file changed, 2 insertions(+), 1 deletion(-) > > Fine wi

Re: [FFmpeg-devel] [PATCH] web/contact: Point to the Code of conduct

2016-06-06 Thread Lou Logan
On Mon, 6 Jun 2016 23:50:01 +0200, Michael Niedermayer wrote: > Suggested-by: Felt, Patrick > Signed-off-by: Michael Niedermayer > --- > src/contact |3 ++- > 1 file changed, 2 insertions(+), 1 deletion(-) Fine with me. ___ ffmpeg-devel mailing l

Re: [FFmpeg-devel] Changelog : add OpenExr improvements

2016-06-06 Thread Michael Niedermayer
On Mon, Jun 06, 2016 at 10:55:22PM +0200, Martin Vignali wrote: > Hello, > > In attach, patch to add entry to the changelog, for recently add OpenExr > features > > Martin > Changelog |1 + > 1 file changed, 1 insertion(+) > 55ad0a636012f50d19cdbe468b25a20fd9a2eb24 > 0001-Changelog-add-Op

[FFmpeg-devel] [PATCH v2 2/2] ffmpeg: Add cuvid hwaccel support

2016-06-06 Thread Timo Rothenpieler
--- Makefile | 1 + ffmpeg.c | 5 ++ ffmpeg.h | 3 + ffmpeg_cuvid.c | 217 + ffmpeg_opt.c | 3 + 5 files changed, 229 insertions(+) create mode 100644 ffmpeg_cuvid.c diff --git a/Makefile b/Makefile index 0ff4a87

[FFmpeg-devel] [PATCH v2 1/2] avcodec/cuvid: add cuvid decoder

2016-06-06 Thread Timo Rothenpieler
--- Changelog | 2 + MAINTAINERS| 1 + configure | 20 ++ libavcodec/Makefile| 2 + libavcodec/allcodecs.c | 4 + libavcodec/cuvid.c | 602 + libavcodec/version.h | 4 +- 7 files changed, 633

[FFmpeg-devel] [PATCH] web/contact: Point to the Code of conduct

2016-06-06 Thread Michael Niedermayer
Suggested-by: Felt, Patrick Signed-off-by: Michael Niedermayer --- src/contact |3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/src/contact b/src/contact index 200cb67..e076222 100644 --- a/src/contact +++ b/src/contact @@ -11,7 +11,7 @@ avoid https://en.wikiped

Re: [FFmpeg-devel] [PATCH 1/1] avformat/tcp: support timeout for getaddrinfo For fixing stucking when resolving addrinfo

2016-06-06 Thread Michael Niedermayer
On Wed, Jun 01, 2016 at 12:03:32PM +0800, XinZheng Zhang wrote: > On Tue, May 31, 2016 at 9:33 PM, Hendrik Leppkes wrote: > > > > On Tue, May 31, 2016 at 2:58 PM, Xinzheng Zhang > > wrote: > > > --- > > > libavformat/tcp.c | 215 > > > ++ > >

[FFmpeg-devel] [PATCH 2/2] vaapi_encode_h26[45]: Reject bitrate targets higher than 2^31

2016-06-06 Thread Mark Thompson
--- I'll go with Matthieu's suggestion to use INT32_MAX instead of 1 << 31. libavcodec/vaapi_encode_h264.c | 6 ++ libavcodec/vaapi_encode_h265.c | 6 ++ 2 files changed, 12 insertions(+) diff --git a/libavcodec/vaapi_encode_h264.c b/libavcodec/vaapi_encode_h264.c index dc7774b..2e2052b

Re: [FFmpeg-devel] AVClass & AVOption [VOTE]

2016-06-06 Thread Michael Niedermayer
On Mon, Jun 06, 2016 at 11:07:22PM +0200, Michael Niedermayer wrote: > On Sun, May 29, 2016 at 01:32:54AM +0200, Michael Niedermayer wrote: > > Hi > > > > It was suggested in the IRC meeting today that i start a vote to > > resolve if AVClass & AVOption should be added to AVCodecParameters > > Thi

[FFmpeg-devel] [PATCH 1/2] MAINTAINERS: Add myself as maintainer for VAAPI encoders

2016-06-06 Thread Mark Thompson
--- MAINTAINERS | 1 + 1 file changed, 1 insertion(+) diff --git a/MAINTAINERS b/MAINTAINERS index 9ce2524..9d9337b 100644 --- a/MAINTAINERS +++ b/MAINTAINERS @@ -304,6 +304,7 @@ Hardware acceleration: dxva2*Hendrik Leppkes, Laurent Aimar mediacodec*

Re: [FFmpeg-devel] AVClass & AVOption [VOTE]

2016-06-06 Thread Michael Niedermayer
On Sun, May 29, 2016 at 01:32:54AM +0200, Michael Niedermayer wrote: > Hi > > It was suggested in the IRC meeting today that i start a vote to > resolve if AVClass & AVOption should be added to AVCodecParameters > This question needs to be awnsered before the next release because > the ABI would b

[FFmpeg-devel] Changelog : add OpenExr improvements

2016-06-06 Thread Martin Vignali
Hello, In attach, patch to add entry to the changelog, for recently add OpenExr features Martin From 92fcd55e4970c50e7a7be2f23aaa42f8d07fa3d0 Mon Sep 17 00:00:00 2001 From: Martin Vignali Date: Mon, 6 Jun 2016 22:48:24 +0200 Subject: [PATCH] Changelog : add OpenExr improvements --- Changelog |

Re: [FFmpeg-devel] [PATCH] avformat/matroskadec: force 48kHz sample rate when rescaling Opus inital padding

2016-06-06 Thread Michael Niedermayer
On Mon, Jun 06, 2016 at 04:13:51PM -0300, James Almer wrote: > Mkvtoolnix stores the sample rate of the original stream as reported by the > "OpusHead" stream header instead of 48kHz, the actual sample rate of the Opus > stream. > Ignoring the stored sample rate and forcing 48kHz preserves the corr

Re: [FFmpeg-devel] [PATCH] lavc/mediacodec: improve error messages

2016-06-06 Thread Michael Niedermayer
On Mon, Jun 06, 2016 at 10:05:38AM +0200, Matthieu Bouron wrote: > From: Matthieu Bouron > > --- > libavcodec/mediacodecdec.c | 4 ++-- > 1 file changed, 2 insertions(+), 2 deletions(-) LGTM thx [...] -- Michael GnuPG fingerprint: 9FF2128B147EF6730BADF133611EC787040B0FAB It is dangerous

[FFmpeg-devel] [PATCH] avformat/matroskadec: force 48kHz sample rate when rescaling Opus inital padding

2016-06-06 Thread James Almer
Mkvtoolnix stores the sample rate of the original stream as reported by the "OpusHead" stream header instead of 48kHz, the actual sample rate of the Opus stream. Ignoring the stored sample rate and forcing 48kHz preserves the correct initial padding when remuxing. Signed-off-by: James Almer --- O

Re: [FFmpeg-devel] [PATCH] lavf/srtdec: fix probing files with negative first timestamps

2016-06-06 Thread Clément Bœsch
On Mon, Jun 06, 2016 at 01:26:40PM -0500, Rodger Combs wrote: > --- > libavformat/srtdec.c | 2 +- > 1 file changed, 1 insertion(+), 1 deletion(-) > > diff --git a/libavformat/srtdec.c b/libavformat/srtdec.c > index 585aa6a..06061a8 100644 > --- a/libavformat/srtdec.c > +++ b/libavformat/srtdec.c

[FFmpeg-devel] [PATCH] lavf/srtdec: fix probing files with negative first timestamps

2016-06-06 Thread Rodger Combs
--- libavformat/srtdec.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/libavformat/srtdec.c b/libavformat/srtdec.c index 585aa6a..06061a8 100644 --- a/libavformat/srtdec.c +++ b/libavformat/srtdec.c @@ -52,7 +52,7 @@ static int srt_probe(AVProbeData *p) /* Check if the n

Re: [FFmpeg-devel] [PATCH 1/2] avformat/utils: Export coded dimensions unconditionally

2016-06-06 Thread Hendrik Leppkes
On Mon, Jun 6, 2016 at 6:29 PM, Michael Niedermayer wrote: > On Mon, Jun 06, 2016 at 06:14:15PM +0200, Hendrik Leppkes wrote: >> On Mon, Jun 6, 2016 at 6:09 PM, Michael Niedermayer >> wrote: >> > On Mon, Jun 06, 2016 at 09:01:44AM +0200, Hendrik Leppkes wrote: >> >> On Sun, Jun 5, 2016 at 5:13 AM

Re: [FFmpeg-devel] [PATCH 1/2] avformat/utils: Export coded dimensions unconditionally

2016-06-06 Thread Michael Niedermayer
On Mon, Jun 06, 2016 at 06:14:15PM +0200, Hendrik Leppkes wrote: > On Mon, Jun 6, 2016 at 6:09 PM, Michael Niedermayer > wrote: > > On Mon, Jun 06, 2016 at 09:01:44AM +0200, Hendrik Leppkes wrote: > >> On Sun, Jun 5, 2016 at 5:13 AM, Michael Niedermayer > >> wrote: > >> > This fixes a API regress

Re: [FFmpeg-devel] [PATCH 1/2] avformat/utils: Export coded dimensions unconditionally

2016-06-06 Thread Hendrik Leppkes
On Mon, Jun 6, 2016 at 6:09 PM, Michael Niedermayer wrote: > On Mon, Jun 06, 2016 at 09:01:44AM +0200, Hendrik Leppkes wrote: >> On Sun, Jun 5, 2016 at 5:13 AM, Michael Niedermayer >> wrote: >> > This fixes a API regression >> > Probably fixes Ticket5451 >> > >> > Signed-off-by: Michael Niedermay

Re: [FFmpeg-devel] [PATCH 1/2] avformat/utils: Export coded dimensions unconditionally

2016-06-06 Thread Michael Niedermayer
On Mon, Jun 06, 2016 at 09:01:44AM +0200, Hendrik Leppkes wrote: > On Sun, Jun 5, 2016 at 5:13 AM, Michael Niedermayer > wrote: > > This fixes a API regression > > Probably fixes Ticket5451 > > > > Signed-off-by: Michael Niedermayer > > --- > > libavformat/utils.c |4 ++-- > > libavformat/

Re: [FFmpeg-devel] IRC meeting

2016-06-06 Thread Felt, Patrick
On 6/4/16, 4:33 AM, "ffmpeg-devel on behalf of Michael Niedermayer" wrote: >On Sat, Jun 04, 2016 at 10:30:32AM +0200, Piotr Bandurski wrote: >> Hi, >> >> The problem with this project is that it has not enough active developers. >> It looks like most of the devs swiched into "stand-by" mode

[FFmpeg-devel] [PATCH] avcodec/sheervideo: Hack to extract init_vlc style tables for RGB [not to be pushed]

2016-06-06 Thread Michael Niedermayer
Signed-off-by: Michael Niedermayer --- libavcodec/sheervideo.c | 33 +++-- 1 file changed, 27 insertions(+), 6 deletions(-) diff --git a/libavcodec/sheervideo.c b/libavcodec/sheervideo.c index e41645e..88fb174 100644 --- a/libavcodec/sheervideo.c +++ b/libavcodec/sh

Re: [FFmpeg-devel] FFmpeg 3.1

2016-06-06 Thread James Almer
On 6/6/2016 10:30 AM, Michael Niedermayer wrote: > On Mon, Jun 06, 2016 at 12:11:56AM -0300, James Almer wrote: >> On 6/5/2016 10:28 PM, Michael Niedermayer wrote: >>> Hi all >>> >>> its time for making the next major release >>> If you want something in dont forget to push it to git master >>> >>>

Re: [FFmpeg-devel] libavcodec/exr : fix tile and pxr24 when all channels doesn't have the same type

2016-06-06 Thread Paul B Mahol
On 6/4/16, Martin Vignali wrote: > Hello, > > In attach patchs to fix decoding error, when all channels doesn't have the > same pixel type. > > 001 : Fix tile, and simplify the tile support (remove unneed reorganisation > of pixel). > 002 : remove scanline_size var, is now replace by the same calc

Re: [FFmpeg-devel] FFmpeg 3.1

2016-06-06 Thread Michael Niedermayer
On Mon, Jun 06, 2016 at 03:48:43PM +0200, Michael Niedermayer wrote: > On Mon, Jun 06, 2016 at 03:28:19AM +0200, Michael Niedermayer wrote: > > Hi all > > > > its time for making the next major release > > If you want something in dont forget to push it to git master > > > > If theres some bug yo

Re: [FFmpeg-devel] libavcodec/exr : fix B44 when all channel doesn't have the same type

2016-06-06 Thread Paul B Mahol
On 6/4/16, Martin Vignali wrote: > Hello, > > in attach patch to fix decoding B44 exr, when there is several pixel_type. > > Theses patch need to be apply after the 3 patch of mail : > libavcodec/exr : fix tile and pxr24 when all channels doesn't have the same > type > > > 004 : Move channel_line_

Re: [FFmpeg-devel] libavcodec/exr : fix layer detection

2016-06-06 Thread Paul B Mahol
On 6/4/16, Martin Vignali wrote: > Hello, > > In attach patch to fix layer detection inside exr file. > Only search a channel match, if the layer name also match. If no layer name > is set, doesn't change the previous behaviour. > Avoid to automatically mix channel from several layer. And when lay

Re: [FFmpeg-devel] FFmpeg 3.1

2016-06-06 Thread Michael Niedermayer
On Mon, Jun 06, 2016 at 03:28:19AM +0200, Michael Niedermayer wrote: > Hi all > > its time for making the next major release > If you want something in dont forget to push it to git master > > If theres some bug you care about or belive is important, please > help fix them: > > regression bugs (

Re: [FFmpeg-devel] FFmpeg 3.1

2016-06-06 Thread Michael Niedermayer
On Mon, Jun 06, 2016 at 12:11:56AM -0300, James Almer wrote: > On 6/5/2016 10:28 PM, Michael Niedermayer wrote: > > Hi all > > > > its time for making the next major release > > If you want something in dont forget to push it to git master > > > > If theres some bug you care about or belive is im

Re: [FFmpeg-devel] [PATCH] lavc/videotoolbox: fix H.264 hwaccel init issue

2016-06-06 Thread Richard Kern
Ping. This fixes #5595. > On Jun 1, 2016, at 10:06 PM, Rick Kern wrote: > > Fixes VTDecompressionSessionCreate() error. > > Signed-off-by: Rick Kern > --- > libavcodec/videotoolbox.c | 59 --- > 1 file changed, 45 insertions(+), 14 deletions(-) > >

Re: [FFmpeg-devel] FFmpeg 3.1

2016-06-06 Thread pon pon
hardware decoding dont work in the current git on osx. it is reported on ticket 5595. that with videotoolbox works in the current git on osx by the patch http://permalink.gmane.org/gmane.comp.video.ffmpeg.devel/214982 though hardware decoding with vda dont work. the pacth is need. as mentioned on

Re: [FFmpeg-devel] [PATCH 0/5] avutil/qsv add hwcontext_qsv

2016-06-06 Thread nablet developer
> On 06 Jun 2016, at 16:40, Mark Thompson wrote: > > On 06/06/16 09:25, nablet developer wrote: >> ping. any feedback? > > Perhaps you could comment on the merits and functionality of your version as > compared with the one here >

Re: [FFmpeg-devel] [PATCH 1/2] avcodec/cuvid: add cuvid decoder

2016-06-06 Thread Hendrik Leppkes
On Sun, Jun 5, 2016 at 8:58 PM, Timo Rothenpieler wrote: > --- > Changelog | 2 + > MAINTAINERS| 1 + > configure | 20 ++ > libavcodec/Makefile| 2 + > libavcodec/allcodecs.c | 4 + > libavcodec/cuvid.c | 550 > +

Re: [FFmpeg-devel] FFmpeg 3.1

2016-06-06 Thread Carl Eugen Hoyos
Michael Niedermayer niedermayer.cc> writes: > If you want something in dont forget to push it to git master I don't know if is is easily possible but checkasm should be disabled for ppc64 (be) in the release branch, not in git master. This is ticket #5508. Carl Eugen

Re: [FFmpeg-devel] [PATCH 2/2] ffmpeg: Add cuvid hwaccel support

2016-06-06 Thread Andrey Turkin
2016-06-05 21:58 GMT+03:00 Timo Rothenpieler : > +/* check if the decoder supports CUVID and the output only goes to > this stream */ > +if (ist->nb_filters || ist->hwaccel_id != HWACCEL_CUVID || !ist->dec > || !ist->dec->pix_fmts) > +goto cancel; > +for (pix_fmt = ist->dec->p

Re: [FFmpeg-devel] [PATCH 1/2] avcodec/cuvid: add cuvid decoder

2016-06-06 Thread Hendrik Leppkes
On Sun, Jun 5, 2016 at 8:58 PM, Timo Rothenpieler wrote: > --- > Changelog | 2 + > MAINTAINERS| 1 + > configure | 20 ++ > libavcodec/Makefile| 2 + > libavcodec/allcodecs.c | 4 + > libavcodec/cuvid.c | 550 > +

Re: [FFmpeg-devel] [PATCH] lavf/os_support.h: Fix for unicode filenames on windows.

2016-06-06 Thread Hendrik Leppkes
On Mon, Jun 6, 2016 at 11:34 AM, Matt Oliver wrote: > On 6 June 2016 at 19:27, Hendrik Leppkes wrote: > >> On Mon, Jun 6, 2016 at 9:12 AM, Matt Oliver wrote: >> > Fixes #819 #5256 #5281 >> > --- >> > libavformat/file.c | 4 >> > libavformat/os_support.h | 24

Re: [FFmpeg-devel] [PATCH] lavf/os_support.h: Fix for unicode filenames on windows.

2016-06-06 Thread Matt Oliver
On 6 June 2016 at 19:27, Hendrik Leppkes wrote: > On Mon, Jun 6, 2016 at 9:12 AM, Matt Oliver wrote: > > Fixes #819 #5256 #5281 > > --- > > libavformat/file.c | 4 > > libavformat/os_support.h | 24 > > 2 files changed, 28 insertions(+) > > > > diff --git a/

Re: [FFmpeg-devel] [PATCH 1/2] avcodec/cuvid: add cuvid decoder

2016-06-06 Thread Hendrik Leppkes
On Sun, Jun 5, 2016 at 8:58 PM, Timo Rothenpieler wrote: > --- > Changelog | 2 + > MAINTAINERS| 1 + > configure | 20 ++ > libavcodec/Makefile| 2 + > libavcodec/allcodecs.c | 4 + > libavcodec/cuvid.c | 550 > +

Re: [FFmpeg-devel] [PATCH 2/2] lavc/mediacodec: bypass width/height restrictions when looking for a decoder

2016-06-06 Thread Matthieu Bouron
On Mon, Jun 06, 2016 at 11:29:03AM +0200, Hendrik Leppkes wrote: > On Mon, Jun 6, 2016 at 9:54 AM, Matthieu Bouron > wrote: > > On Tue, May 31, 2016 at 05:41:16PM +0200, Matthieu Bouron wrote: > >> On Tue, May 31, 2016 at 03:51:20PM +0200, Matthieu Bouron wrote: > >> > On Tue, May 31, 2016 at 03:3

Re: [FFmpeg-devel] [PATCH 0/5] avutil/qsv add hwcontext_qsv

2016-06-06 Thread Mark Thompson
On 06/06/16 09:25, nablet developer wrote: > ping. any feedback? Perhaps you could comment on the merits and functionality of your version as compared with the one here (with associated series) posted at roughly the same time? O

Re: [FFmpeg-devel] FFmpeg 3.1

2016-06-06 Thread Timo Rothenpieler
I'd like to merge the cuvid decoder/hwaccel for 3.1. signature.asc Description: OpenPGP digital signature ___ ffmpeg-devel mailing list ffmpeg-devel@ffmpeg.org http://ffmpeg.org/mailman/listinfo/ffmpeg-devel

Re: [FFmpeg-devel] [PATCH 1/2] avcodec/cuvid: add cuvid decoder

2016-06-06 Thread Andrey Turkin
2016-06-05 21:58 GMT+03:00 Timo Rothenpieler : > + > +avctx->width = format->coded_width; > +avctx->height = format->coded_height; > + > This patch seems to mix bitstream picture dimensions and output picture dimensions in several places. Can you test if the decoder works with input video

Re: [FFmpeg-devel] [PATCH 2/2] lavc/mediacodec: bypass width/height restrictions when looking for a decoder

2016-06-06 Thread Hendrik Leppkes
On Mon, Jun 6, 2016 at 9:54 AM, Matthieu Bouron wrote: > On Tue, May 31, 2016 at 05:41:16PM +0200, Matthieu Bouron wrote: >> On Tue, May 31, 2016 at 03:51:20PM +0200, Matthieu Bouron wrote: >> > On Tue, May 31, 2016 at 03:35:49PM +0200, Hendrik Leppkes wrote: >> > > On Tue, May 31, 2016 at 3:00 PM

Re: [FFmpeg-devel] [PATCH] lavf/os_support.h: Fix for unicode filenames on windows.

2016-06-06 Thread Hendrik Leppkes
On Mon, Jun 6, 2016 at 9:12 AM, Matt Oliver wrote: > Fixes #819 #5256 #5281 > --- > libavformat/file.c | 4 > libavformat/os_support.h | 24 > 2 files changed, 28 insertions(+) > > diff --git a/libavformat/file.c b/libavformat/file.c > index 5765ce7..264542a 1

Re: [FFmpeg-devel] [PATCH 0/5] avutil/qsv add hwcontext_qsv

2016-06-06 Thread nablet developer
ping. any feedback? > On 25 May 2016, at 19:20, nablet developer wrote: > > added hwcontext_qsv (Intel QuickSync video) > it will handle MFX session initialization and deinitialization, > and will allow to share that code between libavcodec and libavfilter > without adding new API calls for QSV,

Re: [FFmpeg-devel] FFmpeg 3.1

2016-06-06 Thread Matthieu Bouron
On Mon, Jun 06, 2016 at 03:28:19AM +0200, Michael Niedermayer wrote: > Hi all > > its time for making the next major release > If you want something in dont forget to push it to git master I'd like to have the 3 pending MediaCodec patches merged before the release. I'll re-send to the ml the Medi

[FFmpeg-devel] [PATCH] lavc/mediacodec: improve error messages

2016-06-06 Thread Matthieu Bouron
From: Matthieu Bouron --- libavcodec/mediacodecdec.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/libavcodec/mediacodecdec.c b/libavcodec/mediacodecdec.c index 712f984..676ade7 100644 --- a/libavcodec/mediacodecdec.c +++ b/libavcodec/mediacodecdec.c @@ -198,7 +198,7 @@

Re: [FFmpeg-devel] [PATCH 2/2] lavc/mediacodec: bypass width/height restrictions when looking for a decoder

2016-06-06 Thread Matthieu Bouron
On Tue, May 31, 2016 at 05:41:16PM +0200, Matthieu Bouron wrote: > On Tue, May 31, 2016 at 03:51:20PM +0200, Matthieu Bouron wrote: > > On Tue, May 31, 2016 at 03:35:49PM +0200, Hendrik Leppkes wrote: > > > On Tue, May 31, 2016 at 3:00 PM, Matthieu Bouron > > > wrote: > > > > From: Matthieu Bouron

[FFmpeg-devel] [PATCH] lavu/intmath.h: fix compilation with msvc10.

2016-06-06 Thread Matt Oliver
--- libavutil/x86/intmath.h | 2 ++ 1 file changed, 2 insertions(+) diff --git a/libavutil/x86/intmath.h b/libavutil/x86/intmath.h index f58b0d0..de177dd 100644 --- a/libavutil/x86/intmath.h +++ b/libavutil/x86/intmath.h @@ -47,6 +47,7 @@ static av_always_inline av_const int ff_log2_x86(unsigned

Re: [FFmpeg-devel] [PATCH 1/2] avformat/utils: Export coded dimensions unconditionally

2016-06-06 Thread Hendrik Leppkes
On Sun, Jun 5, 2016 at 5:13 AM, Michael Niedermayer wrote: > This fixes a API regression > Probably fixes Ticket5451 > > Signed-off-by: Michael Niedermayer > --- > libavformat/utils.c |4 ++-- > libavformat/version.h |2 +- > 2 files changed, 3 insertions(+), 3 deletions(-) > > diff --

[FFmpeg-devel] [PATCH] lavf/os_support.h: Fix for unicode filenames on windows.

2016-06-06 Thread Matt Oliver
Fixes #819 #5256 #5281 --- libavformat/file.c | 4 libavformat/os_support.h | 24 2 files changed, 28 insertions(+) diff --git a/libavformat/file.c b/libavformat/file.c index 5765ce7..264542a 100644 --- a/libavformat/file.c +++ b/libavformat/file.c @@ -148,7 +

Re: [FFmpeg-devel] [PATCH 1/2] avformat/utils: Export coded dimensions unconditionally

2016-06-06 Thread Hendrik Leppkes
On Mon, Jun 6, 2016 at 9:01 AM, Hendrik Leppkes wrote: > On Sun, Jun 5, 2016 at 5:13 AM, Michael Niedermayer > wrote: >> This fixes a API regression >> Probably fixes Ticket5451 >> >> Signed-off-by: Michael Niedermayer >> --- >> libavformat/utils.c |4 ++-- >> libavformat/version.h |2