Re: [FFmpeg-devel] [PATCH] libavcodec/libvpx: Add VPx alpha decode support

2016-07-19 Thread James Zern
On Fri, Jul 15, 2016 at 3:29 PM, James Zern wrote: > On Thu, Jul 14, 2016 at 8:16 PM, James Zern wrote: >> On Thu, Jul 14, 2016 at 12:15 PM, Vignesh Venkatasubramanian >> wrote: >>> +ret = vpx_init( >>> +avctx, >>> +(avctx->codec_id == AV_C

[FFmpeg-devel] [PATCH] opt: delete duplicate "hwaccel_output_format" option

2016-07-19 Thread Jun Zhao
From d712488fd73bebaa8c8f38ee29b70aa34c1df7fa Mon Sep 17 00:00:00 2001 From: Jun Zhao Date: Fri, 24 Jun 2016 15:06:08 +0800 Subject: [PATCH] =?UTF-8?q?ffmpeg=5Fopt:=20Delete=20duplicate=20=E2=80=9Ch?= =?UTF-8?q?waccel=5Foutput=5Fformat=E2=80=9D=20option.?= MIME-Version: 1.0 Content-Type: text/pla

Re: [FFmpeg-devel] why ffmpeg 3.1.1 still uses AVStream::codec

2016-07-19 Thread qw
Hi, If AVStream::codec is declared as deprecated, I think, there should be another way to open and close avcodec instead of using avcodec_open2() and avcodec_close(). Is that right? Thanks! Regards Andrew At 2016-07-19 19:30:58, "Timo Rothenpieler" wrote: >> Hi, >> >> I have read part

[FFmpeg-devel] [PATCH] avutil: simplify LOCAL_ALIGNED macros

2016-07-19 Thread James Almer
Signed-off-by: James Almer --- configure| 10 -- libavutil/internal.h | 22 ++ 2 files changed, 10 insertions(+), 22 deletions(-) diff --git a/configure b/configure index a220fa1..0c656af 100755 --- a/configure +++ b/configure @@ -1765,9 +1765,7 @@ ARCH_FE

[FFmpeg-devel] [PATCH] x86/diracdsp: make ff_put_signed_rect_clamped_10_sse4 work on x86_32

2016-07-19 Thread James Almer
Signed-off-by: James Almer --- libavcodec/x86/diracdsp.asm| 37 - libavcodec/x86/diracdsp_init.c | 4 2 files changed, 20 insertions(+), 21 deletions(-) diff --git a/libavcodec/x86/diracdsp.asm b/libavcodec/x86/diracdsp.asm index d86b543..6b3f780 100

Re: [FFmpeg-devel] [PATCH] fate: add test for chorus filter

2016-07-19 Thread Michael Niedermayer
On Tue, Jul 19, 2016 at 07:37:16PM +, Petru Rares Sincraian wrote: > > Hi there, > > Here is a patch for the chorus filter. I tested on x64 and x86. > > > Regards, > Petru Rares. > fate/filter-audio.mak |5 + > ref/fate/filter-chorus | 15 +++ > 2 files changed, 20

Re: [FFmpeg-devel] [PATCH] avformat/avlanguage: deprecate av_convert_lang_to and make it internal

2016-07-19 Thread James Almer
On 5/21/2016 10:56 AM, Paul B Mahol wrote: > On 5/21/16, James Almer wrote: >> On 5/13/2016 6:10 PM, James Almer wrote: >>> The header was never installed and the function is only used in >>> libavformat >>> >>> Signed-off-by: James Almer >>> --- >>> libavformat/asfdec_f.c| 2 +- >>> libavf

Re: [FFmpeg-devel] [PATCH 1/3] avformat/oggparsevp8: fix pts calculation on pages ending with an invisible frame

2016-07-19 Thread James Almer
On 7/18/2016 8:56 PM, Michael Niedermayer wrote: > On Mon, Jul 18, 2016 at 01:56:29PM -0300, James Almer wrote: >> On 7/12/2016 6:36 PM, James Almer wrote: >>> Signed-off-by: James Almer >>> --- >>> libavformat/oggparsevp8.c | 6 +- >>> 1 file changed, 5 insertions(+), 1 deletion(-) >> >> Pin

Re: [FFmpeg-devel] [PATCH] configure: add support for new CPUs

2016-07-19 Thread James Almer
On 7/18/2016 6:52 AM, Michael Niedermayer wrote: > On Sun, Jul 17, 2016 at 07:15:30PM -0300, James Almer wrote: >> Add new -march values for Intel and AMD CPUs introduced with GCC 5 and 6, and >> improve SunCC flags accordingly. >> >> Signed-off-by: James Almer >> --- >> configure | 7 --- >>

Re: [FFmpeg-devel] [PATCH 1/2] avcodec/h264_slice: Move h264_init_ps() call into h264_field_start()

2016-07-19 Thread Michael Niedermayer
On Tue, Jul 19, 2016 at 10:31:56PM +0200, Michael Niedermayer wrote: > --- > libavcodec/h264_slice.c | 14 +++--- > 1 file changed, 7 insertions(+), 7 deletions(-) patchset applied [...] -- Michael GnuPG fingerprint: 9FF2128B147EF6730BADF133611EC787040B0FAB Many things microsoft

Re: [FFmpeg-devel] [PATCH] fate: add test for avfft

2016-07-19 Thread Michael Niedermayer
On Tue, Jul 19, 2016 at 07:02:10PM +, Petru Rares Sincraian wrote: > Ups, sorry again. > > Here is the patch. I tested and seems to work :) applied thanks [...] -- Michael GnuPG fingerprint: 9FF2128B147EF6730BADF133611EC787040B0FAB If you think the mosad wants you dead since a long t

Re: [FFmpeg-devel] [PATCH 1/3] libopenmpt: change layout option to use string

2016-07-19 Thread Josh de Kock
On Tue, Jul 19, 2016, at 10:39 PM, Hendrik Leppkes wrote: > > We do have this option, so I would prefer if we keep using it. > Sure, that makes sense. I'll drop this patch from the set. ___ ffmpeg-devel mailing list ffmpeg-devel@ffmpeg.org http://ffmpeg

Re: [FFmpeg-devel] [PATCH 1/3] libopenmpt: change layout option to use string

2016-07-19 Thread Hendrik Leppkes
On Tue, Jul 19, 2016 at 11:33 PM, Josh de Kock wrote: > Libav doesn't have AV_OPT_TYPE_CHANNEL_LAYOUT > so use strings instead to maintain consistency. We do have this option, so I would prefer if we keep using it. - Hendrik ___ ffmpeg-devel mailing li

[FFmpeg-devel] [PATCH 2/3 v3] libopenmpt: add subsong support

2016-07-19 Thread Josh de Kock
--- libavformat/libopenmpt.c | 26 +++--- 1 file changed, 23 insertions(+), 3 deletions(-) diff --git a/libavformat/libopenmpt.c b/libavformat/libopenmpt.c index 17eb611..d52ebd6 100644 --- a/libavformat/libopenmpt.c +++ b/libavformat/libopenmpt.c @@ -43,9 +43,12 @@ typedef st

[FFmpeg-devel] [PATCH 3/3 v2] docs/demuxers: add libopenmpt section

2016-07-19 Thread Josh de Kock
--- doc/demuxers.texi | 27 +++ 1 file changed, 27 insertions(+) diff --git a/doc/demuxers.texi b/doc/demuxers.texi index e34f8b3..69890c8 100644 --- a/doc/demuxers.texi +++ b/doc/demuxers.texi @@ -267,6 +267,33 @@ track. Track indexes start at 0. The demuxer exports the

[FFmpeg-devel] [PATCH 1/3] libopenmpt: change layout option to use string

2016-07-19 Thread Josh de Kock
Libav doesn't have AV_OPT_TYPE_CHANNEL_LAYOUT so use strings instead to maintain consistency. --- libavformat/libopenmpt.c | 18 +- 1 file changed, 13 insertions(+), 5 deletions(-) diff --git a/libavformat/libopenmpt.c b/libavformat/libopenmpt.c index 58a02be..17eb611 100644 --- a

[FFmpeg-devel] [PATCH 1/2] avcodec/h264_slice: Move h264_init_ps() call into h264_field_start()

2016-07-19 Thread Michael Niedermayer
--- libavcodec/h264_slice.c | 14 +++--- 1 file changed, 7 insertions(+), 7 deletions(-) diff --git a/libavcodec/h264_slice.c b/libavcodec/h264_slice.c index 2562041..ee7dedb 100644 --- a/libavcodec/h264_slice.c +++ b/libavcodec/h264_slice.c @@ -1128,13 +1128,17 @@ static int h264_init_

[FFmpeg-devel] [PATCH 2/2] avcodec/h264: remove list_count and ref_count clearing

2016-07-19 Thread Michael Niedermayer
The code conflicts with moving the h264_init_ps() call point Signed-off-by: Michael Niedermayer --- libavcodec/h264.c |2 -- libavcodec/h264_refs.c |5 - 2 files changed, 7 deletions(-) diff --git a/libavcodec/h264.c b/libavcodec/h264.c index f79735b..db68c05 100644 --- a/libav

[FFmpeg-devel] [PATCH] vp9: add mxext versions of the single-block (w=8, npx=8) h/v loopfilters.

2016-07-19 Thread Ronald S. Bultje
Each takes about 0.1% of runtime in my profiles, and they didn't have any SIMD yet so far (we only had simd for npx=16 double-block versions). --- libavcodec/x86/vp9dsp_init.c | 3 ++ libavcodec/x86/vp9lpf.asm| 99 +++- 2 files changed, 63 insertions(+)

[FFmpeg-devel] [PATCH] fate: add test for chorus filter

2016-07-19 Thread Petru Rares Sincraian
Hi there, Here is a patch for the chorus filter. I tested on x64 and x86. Regards, Petru Rares.From 4a06b5da1e4b3a3dcf8a8df09f650d2545fade6d Mon Sep 17 00:00:00 2001 From: Petru Rares Sincraian Date: Tue, 19 Jul 2016 21:18:08 +0200 Subject: [PATCH] fate: add test for chorus filter --- tests/

Re: [FFmpeg-devel] [PATCH] vp9: add mxext versions of the single-block (w=8, npx=8) h/v loopfilters.

2016-07-19 Thread James Almer
On 7/19/2016 4:10 PM, Ronald S. Bultje wrote: > Each takes about 0.1% of runtime in my profiles, and they didn't have > any SIMD yet so far (we only had simd for npx=16 double-block versions). > --- > libavcodec/x86/vp9dsp_init.c | 3 +++ > libavcodec/x86/vp9lpf.asm| 40 ++

[FFmpeg-devel] [PATCH] vp9: add mxext versions of the single-block (w=8, npx=8) h/v loopfilters.

2016-07-19 Thread Ronald S. Bultje
Each takes about 0.1% of runtime in my profiles, and they didn't have any SIMD yet so far (we only had simd for npx=16 double-block versions). --- libavcodec/x86/vp9dsp_init.c | 3 +++ libavcodec/x86/vp9lpf.asm| 40 2 files changed, 31 insertions(+), 1

Re: [FFmpeg-devel] [PATCH] fate: add test for avfft

2016-07-19 Thread Petru Rares Sincraian
Ups, sorry again. Here is the patch. I tested and seems to work :) From: ffmpeg-devel on behalf of Michael Niedermayer Sent: Tuesday, July 19, 2016 12:38:36 AM To: FFmpeg development discussions and patches Subject: Re: [FFmpeg-devel] [PATCH] fate: add test fo

[FFmpeg-devel] [PATCH] avfilter: Add max stats to PSNR log

2016-07-19 Thread Lucas Cooper
This allows retroactive aggregation of the PSNR statistics (e.g. calculating average PSNR for entire video or a segment of the video). --- libavfilter/vf_psnr.c | 5 + 1 file changed, 5 insertions(+) diff --git a/libavfilter/vf_psnr.c b/libavfilter/vf_psnr.c index 89acd3c..f3dff62 100644 ---

Re: [FFmpeg-devel] [PATCH] avcodec/alsdec: implement floating point decoding

2016-07-19 Thread Umair Khan
Updated patch. On Tue, Jul 19, 2016 at 8:19 PM, Thilo Borgmann wrote: > Am 19.07.16 um 15:42 schrieb Umair Khan: >> On Tue, Jul 19, 2016 at 5:20 PM, Thilo Borgmann >> wrote: >>> Am 19.07.16 um 09:22 schrieb Umair Khan: On Tue, Jul 19, 2016 at 12:29 PM, Paul B Mahol wrote: > > On 7

[FFmpeg-devel] ffbox0 server hosting

2016-07-19 Thread Clément Bœsch
Hi, As stated in previous meeting¹ I'd like to stop paying for ffbox0. This is not exactly an issue today for me, but I feel like it could be avoided. There was a need for a fast solution a while ago, but it's now long past that time (it was about one year ago), and I'd like to be discharged from

Re: [FFmpeg-devel] [PATCH] avformat: Add multi protocol

2016-07-19 Thread Michael Niedermayer
On Mon, Jul 18, 2016 at 04:08:59PM +0200, Nicolas George wrote: > Le primidi 1er thermidor, an CCXXIV, Michael Niedermayer a écrit : > > TODO: docs, version bump, > > TODO: option passing support (as seperate commit/patch) > > > > Signed-off-by: Michael Niedermayer > > --- > > libavformat/Makefi

Re: [FFmpeg-devel] [PATCH] avformat: Add multi protocol

2016-07-19 Thread Michael Niedermayer
On Mon, Jul 18, 2016 at 04:58:57PM +0200, Moritz Barsnick wrote: > On Mon, Jul 18, 2016 at 14:42:22 +0200, Michael Niedermayer wrote: > > \ No newline at end of file > > Not recommended, I guess. ;-) fixed thx [...] -- Michael GnuPG fingerprint: 9FF2128B147EF6730BADF133611EC787040B0FAB Wh

Re: [FFmpeg-devel] [PATCH] avformat: Add multi protocol

2016-07-19 Thread Michael Niedermayer
On Mon, Jul 18, 2016 at 01:42:52PM +, Steven Liu wrote: > LGTM > > But why don't add rtmp? added thx [...] -- Michael GnuPG fingerprint: 9FF2128B147EF6730BADF133611EC787040B0FAB During times of universal deceit, telling the truth becomes a revolutionary act. -- George Orwell signatu

[FFmpeg-devel] [PATCH] vp9: add mxext versions of the single-block (w=4, npx=8) h/v loopfilters.

2016-07-19 Thread Ronald S. Bultje
Each takes about 0.5% of runtime in my profiles, and they didn't have any SIMD yet so far (we only had simd for npx=16 double-block versions). --- libavcodec/x86/vp9dsp_init.c | 3 + libavcodec/x86/vp9lpf.asm| 149 +-- 2 files changed, 103 insertions(+

Re: [FFmpeg-devel] [PATCH 1/2 v3] libopenmpt: add subsong support

2016-07-19 Thread Clément Bœsch
On Tue, Jul 19, 2016 at 04:39:11PM +0100, Josh de Kock wrote: > --- > libavformat/libopenmpt.c | 21 +++-- > 1 file changed, 19 insertions(+), 2 deletions(-) > > diff --git a/libavformat/libopenmpt.c b/libavformat/libopenmpt.c > index 58a02be..670866f 100644 > --- a/libavformat/li

[FFmpeg-devel] [PATCH 2/2] docs/demuxers: add libopenmpt section

2016-07-19 Thread Josh de Kock
--- doc/demuxers.texi | 26 ++ 1 file changed, 26 insertions(+) diff --git a/doc/demuxers.texi b/doc/demuxers.texi index e34f8b3..3646e29 100644 --- a/doc/demuxers.texi +++ b/doc/demuxers.texi @@ -267,6 +267,32 @@ track. Track indexes start at 0. The demuxer exports the n

[FFmpeg-devel] [PATCH 1/2 v3] libopenmpt: add subsong support

2016-07-19 Thread Josh de Kock
--- libavformat/libopenmpt.c | 21 +++-- 1 file changed, 19 insertions(+), 2 deletions(-) diff --git a/libavformat/libopenmpt.c b/libavformat/libopenmpt.c index 58a02be..670866f 100644 --- a/libavformat/libopenmpt.c +++ b/libavformat/libopenmpt.c @@ -36,14 +36,19 @@ typedef struct

Re: [FFmpeg-devel] [PATCH] libavformat: Add FIFO pseudo-muxer

2016-07-19 Thread Jan Sebechlebsky
Hello Nicolas, On 07/15/2016 02:17 PM, Nicolas George wrote: Therefore I would like to keep the fifo muxer as Jan submitted it, without EAGAIN support. If there is a use case for non-blockingingness in a sense you use the phrase, then it can be added later. I am against it. As it is, I consid

Re: [FFmpeg-devel] [PATCH] avcodec/alsdec: implement floating point decoding

2016-07-19 Thread Thilo Borgmann
Am 19.07.16 um 15:42 schrieb Umair Khan: > On Tue, Jul 19, 2016 at 5:20 PM, Thilo Borgmann > wrote: >> Am 19.07.16 um 09:22 schrieb Umair Khan: >>> On Tue, Jul 19, 2016 at 12:29 PM, Paul B Mahol wrote: On 7/19/16, Umair Khan wrote: > On Tue, Jul 19, 2016 at 3:08 AM, Michael Nieder

Re: [FFmpeg-devel] [PATCH] vp9: add 32x32 idct AVX2 implementation.

2016-07-19 Thread Ronald S. Bultje
Hi, On Sat, Jul 16, 2016 at 5:55 AM, Henrik Gramner wrote: > On Wed, Jul 13, 2016 at 6:37 PM, Ronald S. Bultje > wrote: > > +cglobal vp9_idct_idct_32x32_add, 4, 9, 16, 2048, dst, stride, block, eob > [...] > > +movd xm0, [blockq] > > +movam1, [pw_11585x2] >

Re: [FFmpeg-devel] [PATCH] Avoid sending packets to network when multicast ttl is 0 in udp

2016-07-19 Thread Omid Ghaffarinia
Is the patch approved or does it need more explanation? On Wed, Jul 13, 2016 at 3:09 PM, Omid Ghaffarinia wrote: > I attached the patch. > > The actual bug is, when creating a local multicast stream (i.e. giving > "rtp://224.1.1.1:1?ttl=0" to avio_open), then you can see the > packets on the

Re: [FFmpeg-devel] [PATCH] avcodec/alsdec: implement floating point decoding

2016-07-19 Thread Umair Khan
On Tue, Jul 19, 2016 at 5:20 PM, Thilo Borgmann wrote: > Am 19.07.16 um 09:22 schrieb Umair Khan: >> On Tue, Jul 19, 2016 at 12:29 PM, Paul B Mahol wrote: >>> >>> On 7/19/16, Umair Khan wrote: On Tue, Jul 19, 2016 at 3:08 AM, Michael Niedermayer wrote: > On Mon, Jul 18, 2016 at 11

Re: [FFmpeg-devel] [PATCH] avcodec/alsdec: implement floating point decoding

2016-07-19 Thread Thilo Borgmann
Am 19.07.16 um 09:22 schrieb Umair Khan: > On Tue, Jul 19, 2016 at 12:29 PM, Paul B Mahol wrote: >> >> On 7/19/16, Umair Khan wrote: >>> On Tue, Jul 19, 2016 at 3:08 AM, Michael Niedermayer >>> wrote: On Mon, Jul 18, 2016 at 11:42:48PM +0530, Umair Khan wrote: > On Sun, Jul 17, 2016 at

Re: [FFmpeg-devel] why ffmpeg 3.1.1 still uses AVStream::codec

2016-07-19 Thread Timo Rothenpieler
> Hi, > > I have read part of source code of ffmpeg 3.1.1. In the structure of 'struct > AVStream', 'AVCodecContext *codec' is declared as deprecated. But in > ffmpeg.c, 'AVCodecContext *codec' is still used in some functions. Why? Because nobody felt like changing that yet. ___

[FFmpeg-devel] why ffmpeg 3.1.1 still uses AVStream::codec

2016-07-19 Thread qw
Hi, I have read part of source code of ffmpeg 3.1.1. In the structure of 'struct AVStream', 'AVCodecContext *codec' is declared as deprecated. But in ffmpeg.c, 'AVCodecContext *codec' is still used in some functions. Why? Thanks! Regards Andrew __

[FFmpeg-devel] CORRECTED: IETF CELLAR meeting today at 14:00 CEST to discuss FFV1, Matroska, EBML

2016-07-19 Thread Tessa Fallon
The IETF CELLAR Working Group is holding its inaugural meeting today at 14:00 CEST. We will be discussing work done/to be done on FFV1, Matroska, and EBML specifications. You can participate/watch remotely using the IETF tools found here: *Watch* Streaming Video https://tiergarten.conf.meetecho.

[FFmpeg-devel] IETF CELLAR meeting today to discuss FFV1, Matroska, EBML

2016-07-19 Thread Tessa Fallon
The IETF CELLAR Working Group is holding its inaugural meeting today at 14:00 CEST. We will be discussing work done/to be done on Matroska and EBML specifications. You can participate/watch remotely using the IETF tools found here: *Watch* Streaming Video https://tiergarten.conf.meetecho.com/q-m

Re: [FFmpeg-devel] [PATCH] avformat/matroskaenc: Write duration early during mkv_write_header

2016-07-19 Thread Moritz Barsnick
On Tue, Jul 19, 2016 at 01:02:07 +, Soft Works wrote: > I apologize - I'm new to this project and have to get familiar with the > coding styles.. Before writing your first line of code, read other ffmpeg code as well as the developer guidelines. Those things mentioned in this thread are all n

Re: [FFmpeg-devel] [PATCH] avcodec/alsdec: implement floating point decoding

2016-07-19 Thread Umair Khan
On Tue, Jul 19, 2016 at 12:29 PM, Paul B Mahol wrote: > > On 7/19/16, Umair Khan wrote: > > On Tue, Jul 19, 2016 at 3:08 AM, Michael Niedermayer > > wrote: > >> On Mon, Jul 18, 2016 at 11:42:48PM +0530, Umair Khan wrote: > >>> On Sun, Jul 17, 2016 at 3:38 PM, Michael Niedermayer > >>> wrote: >

Re: [FFmpeg-devel] [PATCH] avcodec/alsdec: implement floating point decoding

2016-07-19 Thread Paul B Mahol
On 7/19/16, Umair Khan wrote: > On Tue, Jul 19, 2016 at 3:08 AM, Michael Niedermayer > wrote: >> On Mon, Jul 18, 2016 at 11:42:48PM +0530, Umair Khan wrote: >>> On Sun, Jul 17, 2016 at 3:38 PM, Michael Niedermayer >>> wrote: >>> > On Sun, Jul 17, 2016 at 11:54:49AM +0200, Michael Niedermayer wro