[FFmpeg-devel] how to download specific track data of a m3u8 content?

2016-06-27 Thread aihua zhao
Hi Experts: I use ffmpeg to parse/demux media content, and created a player basing on it. here is a m3u8 content: http://asp.cntv.lxdns.com/asp/hls/main/0303000a/3/default/438eb7a818b246c187e72f1cd4e1bc4c/main.m3u8

Re: [FFmpeg-devel] [PATCH] Remove last deprecated calls

2016-06-27 Thread Felt, Patrick
From: ffmpeg-devel on behalf of Marton Balint Reply-To: FFmpeg development discussions and patches Date: Monday, June 27, 2016 at 6:01 PM To: FFmpeg development discussions and patches Subject: Re: [FFmpeg-devel] [PATCH] Remove last deprecated calls On Mon, 27 Jun 2016, Felt, Patrick wrote

Re: [FFmpeg-devel] [PATCH 2/5] avcodec/ccaption_dec: implement tab offset commands

2016-06-27 Thread Michael Niedermayer
On Tue, Jun 14, 2016 at 11:57:42AM -0700, Aman Gupta wrote: > From: Aman Gupta > > --- > libavcodec/ccaption_dec.c | 5 + > 1 file changed, 5 insertions(+) applied thanks [...] -- Michael GnuPG fingerprint: 9FF2128B147EF6730BADF133611EC787040B0FAB The greatest way to live with hono

Re: [FFmpeg-devel] [PATCH] Remove last deprecated calls

2016-06-27 Thread Marton Balint
On Mon, 27 Jun 2016, Felt, Patrick wrote: --- libavdevice/decklink_dec.cpp | 17 ++--- 1 file changed, 6 insertions(+), 11 deletions(-) diff --git a/libavdevice/decklink_dec.cpp b/libavdevice/decklink_dec.cpp index 7412727..9c5d5f9 100644 --- a/libavdevice/decklink_dec.cpp +++ b/lib

[FFmpeg-devel] libavcodec/exr : add support for gray and gray A file

2016-06-27 Thread Martin Vignali
Hello, in attach a patch to add support for Y and YA exr file (ticket #5621) sample can be found in this ticket, https://trac.ffmpeg.org/ticket/5621 or in the official samples http://download.savannah.nongnu.org/releases/openexr/openexr-images-1.7.0.tar.gz pass exr fate test. The second patch

Re: [FFmpeg-devel] [PATCH 02/10] diracdsp: add dequantization SIMD

2016-06-27 Thread James Almer
On 6/27/2016 8:53 AM, Rostislav Pehlivanov wrote: > I've attached another patch which should work fine now. > I did this after the put_signed_rect so it does require the first patch, > but if this patch is okay I'll amend and tidy things before I push. > For some reason changing dstq to be stored a

Re: [FFmpeg-devel] [PATCH] Remove last deprecated calls

2016-06-27 Thread Felt, Patrick
Agreed. I was headed to fixing up the input mode autodetection next as that’s still outstanding in my queue. I wanted/needed to clean up those errors first though so i didn’t have to wrap those calls in FF_DISABLE_DEPRECATION_WARNINGS and subsequently forgetting to remove them when I submit my

Re: [FFmpeg-devel] [PATCH] Remove last deprecated calls

2016-06-27 Thread Hendrik Leppkes
On Mon, Jun 27, 2016 at 11:11 PM, Felt, Patrick wrote: > --- > libavdevice/decklink_dec.cpp | 17 ++--- > 1 file changed, 6 insertions(+), 11 deletions(-) > > diff --git a/libavdevice/decklink_dec.cpp b/libavdevice/decklink_dec.cpp > index 7412727..9c5d5f9 100644 > --- a/libavdevice/dec

[FFmpeg-devel] [PATCH] Remove last deprecated calls

2016-06-27 Thread Felt, Patrick
--- libavdevice/decklink_dec.cpp | 17 ++--- 1 file changed, 6 insertions(+), 11 deletions(-) diff --git a/libavdevice/decklink_dec.cpp b/libavdevice/decklink_dec.cpp index 7412727..9c5d5f9 100644 --- a/libavdevice/decklink_dec.cpp +++ b/libavdevice/decklink_dec.cpp @@ -120,10 +120,6 @@

Re: [FFmpeg-devel] [PATCH] tests/checkasm/pixblockdsp: Test only aligned by 8 diff/get pixels

2016-06-27 Thread Michael Niedermayer
On Sun, Jun 26, 2016 at 01:59:05PM +0200, Hendrik Leppkes wrote: > On Sun, Jun 26, 2016 at 11:16 AM, Michael Niedermayer > wrote: > > They are documented as requiring 8 byte aligned source > > > > Signed-off-by: Michael Niedermayer > > --- > > tests/checkasm/pixblockdsp.c |4 ++-- > > 1 file

Re: [FFmpeg-devel] [PATCH 01/10] diracdsp: add SIMD for the 10 bit version of put_signed_rect_clamped

2016-06-27 Thread James Almer
On 6/27/2016 7:27 AM, Rostislav Pehlivanov wrote: > diff --git a/libavcodec/x86/diracdsp_init.c b/libavcodec/x86/diracdsp_init.c > index 5fae798..7fa554e 100644 > --- a/libavcodec/x86/diracdsp_init.c > +++ b/libavcodec/x86/diracdsp_init.c > @@ -46,6 +46,10 @@ void ff_put_rect_clamped_sse2(uint8_t *

Re: [FFmpeg-devel] [PATCH] configure: remove -std= from c++ compilation

2016-06-27 Thread Michael Niedermayer
On Sun, Jun 26, 2016 at 07:08:06PM -0400, Rick Kern wrote: > Pulling -std=c99 into CXXFLAGS from CFLAGS causes a compile error with c++ > files using clang on OS X. > Adding -std=c++98 unconditionally to CXXFLAGS will generate a compile error > on compilers that don't support the -std option. > It

[FFmpeg-devel] [PATCH] Change the decklink_dec file header to reflect that this module is used for input from decklink and not output

2016-06-27 Thread Felt, Patrick
--- libavdevice/decklink_dec.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/libavdevice/decklink_dec.cpp b/libavdevice/decklink_dec.cpp index fcb024e..7412727 100644 --- a/libavdevice/decklink_dec.cpp +++ b/libavdevice/decklink_dec.cpp @@ -1,5 +1,5 @@ /* - * Blackmagic DeckL

Re: [FFmpeg-devel] [PATCH 3/3] h264: make H264ParamSets sps const

2016-06-27 Thread Michael Niedermayer
On Mon, Jun 27, 2016 at 02:39:44PM +0200, Benoit Fouet wrote: > > h264.h|3 +-- > h264_parser.c |2 +- > h264_ps.c |4 ++-- > h264_sei.c|4 ++-- > h264_slice.c |4 ++-- > 5 files changed, 8 insertions(+), 9 deletions(-) > de8d165e9e3754aa691ebf00d5e4d91e93574

Re: [FFmpeg-devel] [PATCH 2/3] h264: straighten dimensions check

2016-06-27 Thread Michael Niedermayer
On Mon, Jun 27, 2016 at 02:39:19PM +0200, Benoit Fouet wrote: > > h264_ps.c| 15 --- > h264_slice.c | 17 - > 2 files changed, 8 insertions(+), 24 deletions(-) > ff2e6c8dccd5e2010a952cade23f24c9fb832b30 > 0002-h264-straighten-dimensions-check-ff_h264_decode_

Re: [FFmpeg-devel] [PATCH 1/3] h264_ps: change decode_scaling_matrices so that it takes

2016-06-27 Thread Michael Niedermayer
On Mon, Jun 27, 2016 at 02:38:50PM +0200, Benoit Fouet wrote: > > h264_ps.c | 11 +++ > 1 file changed, 7 insertions(+), 4 deletions(-) > ea8cc471972e1dbaa4f4f03cd7a5fe92a3b848e9 > 0001-h264_ps-change-decode_scaling_matrices-so-that-it-ta.patch > From c2606da98ecd04762305734f4f45ca8e

Re: [FFmpeg-devel] [PATCH] web/index: add 3.1

2016-06-27 Thread Michael Niedermayer
On Mon, Jun 27, 2016 at 05:30:28PM +0200, Thomas Volkert wrote: > On 27.06.2016 17:17, Michael Niedermayer wrote: > > Some entries from the changelog are used > > --- > > src/index | 56 > > 1 file changed, 56 insertions(+) > > > > diff --

Re: [FFmpeg-devel] [PATCH][WIP] avfilter: add libebur128 port

2016-06-27 Thread Kyle Swanson
On Sun, Jun 19, 2016 at 2:17 AM, Kyle Swanson wrote: > Hi, > > af_loudnorm currently links libebur128. The port makes sense because > libebur128 is tiny, MIT-licensed, has a good API, and would be useful > in several filters. Perceptual loudness has become an important topic > in broadcasting and

Re: [FFmpeg-devel] release/3.1

2016-06-27 Thread Amancio Hasty
This is the commit that introduced the functionality: f1cd9b03f3fa875eb5e394281b4b688cec611658 Amancio On June 27, 2016 at 5:35:33 AM, Carl Eugen Hoyos (ceho...@ag.or.at) wrote: Amancio Hasty gmail.com> writes: > You can close ticket #3518 which states that ffmpeg does not > support RPI’s

Re: [FFmpeg-devel] ffmpeg_vdpau: Re-add ability to ignore level check

2016-06-27 Thread Michael Niedermayer
On Mon, Jun 27, 2016 at 02:28:16PM +0100, Mark Thompson wrote: > On 26/06/16 23:49, Michael Niedermayer wrote: > > On Tue, Jun 07, 2016 at 07:51:18PM +0100, Mark Thompson wrote: > >> Fixes ticket 5286. > >> > >> Uses the global -hwaccel_lax_profile_check option (may be misnamed > >> for this purpos

Re: [FFmpeg-devel] [PATCH] web/index: add 3.1

2016-06-27 Thread Richard Kern
> On Jun 27, 2016, at 11:18 AM, Michael Niedermayer > wrote: > > On Mon, Jun 27, 2016 at 10:55:08AM -0400, Richard Kern wrote: >> >>> On Jun 27, 2016, at 10:29 AM, Michael Niedermayer >>> wrote: >>> >>> Some entries from the changelog are used >>> --- >>> src/index | 27 ++

Re: [FFmpeg-devel] [PATCH] web/index: add 3.1

2016-06-27 Thread Michael Niedermayer
On Mon, Jun 27, 2016 at 10:55:08AM -0400, Richard Kern wrote: > > > On Jun 27, 2016, at 10:29 AM, Michael Niedermayer > > wrote: > > > > Some entries from the changelog are used > > --- > > src/index | 27 +++ > > 1 file changed, 27 insertions(+) > > > > diff --git a/s

[FFmpeg-devel] [PATCH] web/download: Make the 3.1 changelog link point to its changelog instead of the messy git history

2016-06-27 Thread Michael Niedermayer
Signed-off-by: Michael Niedermayer --- src/download |2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/download b/src/download index ceeb2f9..acee9d7 100644 --- a/src/download +++ b/src/download @@ -303,7 +303,7 @@ libpostproc54. 0.100 PGP signature

Re: [FFmpeg-devel] [PATCH] web/index: add 3.1

2016-06-27 Thread Thomas Volkert
On 27.06.2016 17:17, Michael Niedermayer wrote: > Some entries from the changelog are used > --- > src/index | 56 > 1 file changed, 56 insertions(+) > > diff --git a/src/index b/src/index > index ff0caf2..eb66060 100644 > --- a/src/index

Re: [FFmpeg-devel] ffmpeg_vdpau: Re-add ability to ignore level check

2016-06-27 Thread Carl Eugen Hoyos
Hendrik Leppkes gmail.com> writes: > > We need a patch that changes the default to "no check > > of level". > > Changing the default is unrelated to offering an option > to override, and another discussion entirely. It may be another discussion, it certainly is the most relevant discussion of

[FFmpeg-devel] [PATCH] Changed metadata print option to accept general urls

2016-06-27 Thread sami . hult
From: Sami Hult --- Changelog| 1 + doc/filters.texi | 23 +-- libavfilter/f_metadata.c | 48 3 files changed, 46 insertions(+), 26 deletions(-) diff --git a/Changelog b/Changelog index 4a85925..854109

[FFmpeg-devel] [PATCH] web/index: add 3.1

2016-06-27 Thread Michael Niedermayer
Some entries from the changelog are used --- src/index | 56 1 file changed, 56 insertions(+) diff --git a/src/index b/src/index index ff0caf2..eb66060 100644 --- a/src/index +++ b/src/index @@ -37,6 +37,62 @@ News + June 27th

Re: [FFmpeg-devel] ffmpeg_vdpau: Re-add ability to ignore level check

2016-06-27 Thread Hendrik Leppkes
On Mon, Jun 27, 2016 at 5:06 PM, Carl Eugen Hoyos wrote: > Michael Niedermayer niedermayer.cc> writes: > >> is anyone against applying this ? > > As explained by Philip, this patch is not ok: > We need a patch that changes the default to "no check > of level". > Changing the default is unrelated

Re: [FFmpeg-devel] ffmpeg_vdpau: Re-add ability to ignore level check

2016-06-27 Thread Carl Eugen Hoyos
Michael Niedermayer niedermayer.cc> writes: > is anyone against applying this ? As explained by Philip, this patch is not ok: We need a patch that changes the default to "no check of level". Carl Eugen ___ ffmpeg-devel mailing list ffmpeg-devel@ffmp

Re: [FFmpeg-devel] [PATCH] web/index: add 3.1

2016-06-27 Thread Paul B Mahol
On 6/27/16, Thomas Volkert wrote: > On 27.06.2016 16:29, Michael Niedermayer wrote: >> Some entries from the changelog are used >> --- >> src/index | 27 +++ >> 1 file changed, 27 insertions(+) >> >> > > Can't we use all changelog entries for version 3.1? Yes, or we nee

Re: [FFmpeg-devel] [PATCH] web/index: add 3.1

2016-06-27 Thread Thomas Volkert
On 27.06.2016 16:29, Michael Niedermayer wrote: > Some entries from the changelog are used > --- > src/index | 27 +++ > 1 file changed, 27 insertions(+) > > Can't we use all changelog entries for version 3.1? Best regards, Thomas. _

Re: [FFmpeg-devel] [PATCH] web/index: add 3.1

2016-06-27 Thread Richard Kern
> On Jun 27, 2016, at 10:29 AM, Michael Niedermayer > wrote: > > Some entries from the changelog are used > --- > src/index | 27 +++ > 1 file changed, 27 insertions(+) > > diff --git a/src/index b/src/index > index ff0caf2..79a71e8 100644 > --- a/src/index > +++ b/src

[FFmpeg-devel] [PATCH] web/index: add 3.1

2016-06-27 Thread Michael Niedermayer
Some entries from the changelog are used --- src/index | 27 +++ 1 file changed, 27 insertions(+) diff --git a/src/index b/src/index index ff0caf2..79a71e8 100644 --- a/src/index +++ b/src/index @@ -37,6 +37,33 @@ News + June 27th, 2016, FFmpeg 3.1 "Laplace"

Re: [FFmpeg-devel] ffmpeg_vdpau: Re-add ability to ignore level check

2016-06-27 Thread Mark Thompson
On 26/06/16 23:49, Michael Niedermayer wrote: > On Tue, Jun 07, 2016 at 07:51:18PM +0100, Mark Thompson wrote: >> Fixes ticket 5286. >> >> Uses the global -hwaccel_lax_profile_check option (may be misnamed >> for this purpose, but it has the right spirit). >> --- >> Only compile tested (no hardware

Re: [FFmpeg-devel] [PATCH 02/10] diracdsp: add dequantization SIMD

2016-06-27 Thread Michael Niedermayer
On Mon, Jun 27, 2016 at 12:53:47PM +0100, Rostislav Pehlivanov wrote: > On 24 June 2016 at 16:38, James Almer wrote: > > > On 6/24/2016 8:43 AM, Rostislav Pehlivanov wrote: > > > From 154e4312b09f568108dd97089e394c10bb3c28a9 Mon Sep 17 00:00:00 2001 > > > From: Rostislav Pehlivanov > > > Date: T

Re: [FFmpeg-devel] [PATCH] lavc/mediacodec: add hwaccel support

2016-06-27 Thread Matthieu Bouron
On Fri, Jun 24, 2016 at 06:18:02PM +0200, Michael Niedermayer wrote: > On Fri, Jun 24, 2016 at 11:17:41AM +0200, Matthieu Bouron wrote: > > On Thu, Apr 07, 2016 at 02:51:44PM +0200, Matthieu Bouron wrote: > > > On Wed, Mar 23, 2016 at 6:16 PM, Matthieu Bouron > > > > > > wrote: > > > > > > > > >

[FFmpeg-devel] [PATCH 3/3] h264: make H264ParamSets sps const

2016-06-27 Thread Benoit Fouet
From 735362df589eb5f8b05063c56862ff18589475ad Mon Sep 17 00:00:00 2001 From: Benoit Fouet Date: Tue, 21 Jun 2016 14:17:13 +0200 Subject: [PATCH 3/3] h264: make H264ParamSets sps const --- libavcodec/h264.h| 3 +-- libavcodec/h264_parser.c | 2 +- libavcodec/h264_ps.c | 4 ++-- liba

[FFmpeg-devel] [PATCH 2/3] h264: straighten dimensions check

2016-06-27 Thread Benoit Fouet
From 91b000bf2e0b01695803c5ef98cfb06590f5f409 Mon Sep 17 00:00:00 2001 From: Benoit Fouet Date: Mon, 27 Jun 2016 13:31:21 +0200 Subject: [PATCH 2/3] h264: straighten dimensions check ff_h264_decode_seq_parameter_set The MBS only flag was not taken into account when checking macroblock dimensi

[FFmpeg-devel] [PATCH 1/3] h264_ps: change decode_scaling_matrices so that it takes

2016-06-27 Thread Benoit Fouet
From c2606da98ecd04762305734f4f45ca8eaf266459 Mon Sep 17 00:00:00 2001 From: Benoit Fouet Date: Mon, 27 Jun 2016 12:00:39 +0200 Subject: [PATCH 1/3] h264_ps: change decode_scaling_matrices so that it takes const {s,p}ps In order to be able to make SPS const in H264ParamSets, modify decode_scal

[FFmpeg-devel] [PATCH] H264ParamSets: make sps const

2016-06-27 Thread Benoit Fouet
Hi, First patch change decode_scaling_matrices function, so that it does not affect the SPS structure it gets, and marks SPS and PPS const in its arguments. Second patch straightens the check for macroblock sizes in ff_h264_decode_seq_parameter_set and removes the unneeded check in H.264 sl

Re: [FFmpeg-devel] [PATCH v3] lavd/decklink_common: Fix error caused by -Werror=missing-prototypes

2016-06-27 Thread Michael Niedermayer
On Mon, Jun 27, 2016 at 07:59:00AM -0400, Richard Kern wrote: > > > On Jun 27, 2016, at 4:58 AM, Michael Niedermayer > > wrote: > > > > On Sun, Jun 26, 2016 at 08:24:49PM -0400, Rick Kern wrote: > >> decklink_common.cpp includes a .cpp file from the DeckLink API which fails > >> to build becaus

Re: [FFmpeg-devel] release/3.1

2016-06-27 Thread Carl Eugen Hoyos
Amancio Hasty gmail.com> writes: > You can close ticket #3518 which states that ffmpeg does not > support RPI’s hardware h264 encoding. Which commit fixed #3518? Thank you, Carl Eugen ___ ffmpeg-devel mailing list ffmpeg-devel@ffmpeg.org http://ffmpe

Re: [FFmpeg-devel] [PATCH v3] lavd/decklink_common: Fix error caused by -Werror=missing-prototypes

2016-06-27 Thread Richard Kern
> On Jun 27, 2016, at 4:58 AM, Michael Niedermayer > wrote: > > On Sun, Jun 26, 2016 at 08:24:49PM -0400, Rick Kern wrote: >> decklink_common.cpp includes a .cpp file from the DeckLink API which fails >> to build because there are non-static functions in the included .cpp file. >> This disables

Re: [FFmpeg-devel] release/3.1

2016-06-27 Thread Amancio Hasty
On June 26, 2016 at 5:49:30 PM, Michael Niedermayer (mich...@niedermayer.cc) wrote: On Sun, Jun 26, 2016 at 03:36:33AM +0200, Michael Niedermayer wrote: > Hi all > > ive branched release/3.1 off from master > i will make the 3.1 release from HEAD of this branch tomorrow > If there are any last min

Re: [FFmpeg-devel] [PATCH 02/10] diracdsp: add dequantization SIMD

2016-06-27 Thread Rostislav Pehlivanov
On 24 June 2016 at 16:38, James Almer wrote: > On 6/24/2016 8:43 AM, Rostislav Pehlivanov wrote: > > From 154e4312b09f568108dd97089e394c10bb3c28a9 Mon Sep 17 00:00:00 2001 > > From: Rostislav Pehlivanov > > Date: Thu, 23 Jun 2016 18:06:56 +0100 > > Subject: [PATCH 2/2] diracdsp: add dequantizati

Re: [FFmpeg-devel] [PATCH v3] lavd/decklink_common: Fix error caused by -Werror=missing-prototypes

2016-06-27 Thread Richard Kern
> On Jun 26, 2016, at 11:03 PM, Roger Pack wrote: > > could you post a copy of the compile failure for reference? See below - the error is only generated when -I is used. g++ -I. -Isrc/ -D_ISOC99_SOURCE -D_FILE_OFFSET_BITS=64 -D_LARGEFILE_SOURCE -I/Users/rick/projects/ffmpeg/compat/dispatch_s

Re: [FFmpeg-devel] [PATCH] avfilter/drawutils: change to support native endian only

2016-06-27 Thread Michael Niedermayer
On Mon, Jun 27, 2016 at 04:46:16PM +0700, Muhammad Faiz wrote: > previously support little endian only because of fate problem > generally native endian code is faster > > require 'tests/fate-run: support both le/be formats on pixfmts' > need someone tests it on BE machine > > Signed-off-by: Muha

Re: [FFmpeg-devel] [PATCH 01/10] diracdsp: add SIMD for the 10 bit version of put_signed_rect_clamped

2016-06-27 Thread Rostislav Pehlivanov
On 24 June 2016 at 16:21, James Almer wrote: > On 6/24/2016 8:44 AM, Rostislav Pehlivanov wrote: > > From 86ecebfe70509329d6f5b8a587ae79d19f9c8154 Mon Sep 17 00:00:00 2001 > > From: Rostislav Pehlivanov > > Date: Thu, 23 Jun 2016 18:06:55 +0100 > > Subject: [PATCH 1/2] diracdsp: add SIMD for the

[FFmpeg-devel] [PATCH 2/2] lavf: mark stream as const pointer in av_stream_get_side_data()

2016-06-27 Thread Clément Bœsch
From: Clément Bœsch TODO: bump lavf minor XXX: should i add a FF_API_NOCONST_GET_SIDE_DATA? --- libavformat/avformat.h | 2 +- libavformat/utils.c| 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/libavformat/avformat.h b/libavformat/avformat.h index 876f1e3..43b4a02 1006

[FFmpeg-devel] [PATCH 1/2] lavf/utils: add some const to pointers parameters in a few functions

2016-06-27 Thread Clément Bœsch
From: Clément Bœsch --- libavformat/internal.h | 2 +- libavformat/utils.c| 6 +++--- 2 files changed, 4 insertions(+), 4 deletions(-) diff --git a/libavformat/internal.h b/libavformat/internal.h index 647ad65..f66acae 100644 --- a/libavformat/internal.h +++ b/libavformat/internal.h @@ -552

Re: [FFmpeg-devel] [PATCH] h264: make H264ParamSets sps const

2016-06-27 Thread Benoit Fouet
Hi, On 25/06/2016 14:15, Clément Bœsch wrote: On Fri, Jun 24, 2016 at 09:20:35AM +0200, Benoit Fouet wrote: [...] Any objection to this patch now? iam ok with the patch, maybe give others a bit of time to reply before applying though Yeah, I'm in no hurry, I just saw this FIXME in the context

Re: [FFmpeg-devel] [PATCH] avfilter/vf_rotate: add >8 bit depth support

2016-06-27 Thread Muhammad Faiz
On Mon, Jun 27, 2016 at 2:59 PM, Muhammad Faiz wrote: > On Sun, Jun 26, 2016 at 4:20 PM, Muhammad Faiz wrote: >> On Sun, Jun 26, 2016 at 3:22 PM, Paul B Mahol wrote: >>> On 6/26/16, Muhammad Faiz wrote: On Sun, Jun 26, 2016 at 2:30 PM, Paul B Mahol wrote: > On 6/26/16, Carl Eugen Hoyo

[FFmpeg-devel] [PATCH] avfilter/drawutils: change to support native endian only

2016-06-27 Thread Muhammad Faiz
previously support little endian only because of fate problem generally native endian code is faster require 'tests/fate-run: support both le/be formats on pixfmts' need someone tests it on BE machine Signed-off-by: Muhammad Faiz --- libavfilter/drawutils.c | 43 -- liba

Re: [FFmpeg-devel] ffmpeg_vdpau: Re-add ability to ignore level check

2016-06-27 Thread Andy Furniss
Michael Niedermayer wrote: On Tue, Jun 07, 2016 at 07:51:18PM +0100, Mark Thompson wrote: Fixes ticket 5286. Uses the global -hwaccel_lax_profile_check option (may be misnamed for this purpose, but it has the right spirit). --- Only compile tested (no hardware). Maybe -hwaccel_lax_profile_chec

Re: [FFmpeg-devel] release/3.1

2016-06-27 Thread Thomas Volkert
On 27.06.2016 02:48, Michael Niedermayer wrote: > On Sun, Jun 26, 2016 at 03:36:33AM +0200, Michael Niedermayer wrote: >> Hi all >> >> ive branched release/3.1 off from master >> i will make the 3.1 release from HEAD of this branch tomorrow >> If there are any last minute changes that should go in,

Re: [FFmpeg-devel] [PATCH v2] lavd/decklink_common: Fix error caused by -Werror=missing-prototypes

2016-06-27 Thread Nicolas George
Le decadi 10 messidor, an CCXXIV, Michael Niedermayer a écrit : > > The error is being thrown when the location of the decklink headers being > > pulled in as user includes with -I. > > i would assume the same happens with any header, i didnt try but > libc headers likely will also fail with suffi

Re: [FFmpeg-devel] [PATCH] tests/fate-run: support both le/be formats on pixfmts

2016-06-27 Thread Muhammad Faiz
On Mon, Jun 27, 2016 at 3:28 PM, Hendrik Leppkes wrote: > On Mon, Jun 27, 2016 at 10:12 AM, Muhammad Faiz wrote: >> On Mon, Jun 27, 2016 at 2:59 PM, Hendrik Leppkes wrote: >>> On Mon, Jun 27, 2016 at 9:52 AM, Muhammad Faiz wrote: regardless of the actual supported formats of tested filters

Re: [FFmpeg-devel] [PATCH v2] lavd/decklink_common: Fix error caused by -Werror=missing-prototypes

2016-06-27 Thread Michael Niedermayer
On Sun, Jun 26, 2016 at 09:00:58PM -0400, Richard Kern wrote: > > > On Jun 25, 2016, at 3:16 PM, Michael Niedermayer > > wrote: > > > > On Sat, Jun 25, 2016 at 05:29:56PM +, Carl Eugen Hoyos wrote: > >> Michael Niedermayer niedermayer.cc> writes: > >> > >>> why does this happen ? > >> >

Re: [FFmpeg-devel] [PATCH v3] lavd/decklink_common: Fix error caused by -Werror=missing-prototypes

2016-06-27 Thread Michael Niedermayer
On Sun, Jun 26, 2016 at 08:24:49PM -0400, Rick Kern wrote: > decklink_common.cpp includes a .cpp file from the DeckLink API which fails > to build because there are non-static functions in the included .cpp file. > This disables the missing-prototypes error so the file can be included. > > Signed-

Re: [FFmpeg-devel] [PATCH] tests/fate-run: support both le/be formats on pixfmts

2016-06-27 Thread Hendrik Leppkes
On Mon, Jun 27, 2016 at 10:12 AM, Muhammad Faiz wrote: > On Mon, Jun 27, 2016 at 2:59 PM, Hendrik Leppkes wrote: >> On Mon, Jun 27, 2016 at 9:52 AM, Muhammad Faiz wrote: >>> regardless of the actual supported formats of tested filters >>> allowing filters to support only native endian formats >>

Re: [FFmpeg-devel] [PATCH] tests/fate-run: support both le/be formats on pixfmts

2016-06-27 Thread Muhammad Faiz
On Mon, Jun 27, 2016 at 2:59 PM, Hendrik Leppkes wrote: > On Mon, Jun 27, 2016 at 9:52 AM, Muhammad Faiz wrote: >> regardless of the actual supported formats of tested filters >> allowing filters to support only native endian formats >> >> Signed-off-by: Muhammad Faiz >> --- >> tests/fate-run.s

Re: [FFmpeg-devel] [PATCH] tests/fate-run: support both le/be formats on pixfmts

2016-06-27 Thread Hendrik Leppkes
On Mon, Jun 27, 2016 at 9:52 AM, Muhammad Faiz wrote: > regardless of the actual supported formats of tested filters > allowing filters to support only native endian formats > > Signed-off-by: Muhammad Faiz > --- > tests/fate-run.sh | 7 ++- > tests/ref/fate/filter-pixfmts-l

Re: [FFmpeg-devel] [PATCH] avfilter/vf_rotate: add >8 bit depth support

2016-06-27 Thread Muhammad Faiz
On Sun, Jun 26, 2016 at 4:20 PM, Muhammad Faiz wrote: > On Sun, Jun 26, 2016 at 3:22 PM, Paul B Mahol wrote: >> On 6/26/16, Muhammad Faiz wrote: >>> On Sun, Jun 26, 2016 at 2:30 PM, Paul B Mahol wrote: On 6/26/16, Carl Eugen Hoyos wrote: > Muhammad Faiz gmail.com> writes: > >

[FFmpeg-devel] [PATCH] tests/fate-run: support both le/be formats on pixfmts

2016-06-27 Thread Muhammad Faiz
regardless of the actual supported formats of tested filters allowing filters to support only native endian formats Signed-off-by: Muhammad Faiz --- tests/fate-run.sh | 7 ++- tests/ref/fate/filter-pixfmts-lut | 22 ++ tests/ref/fate/filter-pixfmts-pad |

Re: [FFmpeg-devel] [PATCH] lavf: add textdata virtual demuxer and demuxer

2016-06-27 Thread Stefano Sabatini
On date Tuesday 2016-06-14 19:36:04 +0200, Stefano Sabatini encoded: > On date Sunday 2016-06-05 12:59:48 +0200, Stefano Sabatini encoded: > > On date Thursday 2016-05-19 18:50:17 +0200, Stefano Sabatini encoded: > > > On date Thursday 2016-05-19 18:45:22 +0200, Stefano Sabatini encoded: > > > > Th