[FFmpeg-devel] [PATCH] configure: check for erf() and copysign()

2015-07-20 Thread James Almer
They are not available in some compilers. Signed-off-by: James Almer --- configure | 4 1 file changed, 4 insertions(+) diff --git a/configure b/configure index c2a9564..d4d7ae0 100755 --- a/configure +++ b/configure @@ -1730,7 +1730,9 @@ MATH_FUNCS=" atan2f cbrt cbrtf +

Re: [FFmpeg-devel] FFmpeg/MPlayer/rtmpdump possibly searching for a new server and hosting

2015-07-20 Thread Rodney Baker
On Fri, 17 Jul 2015 03:57:03 Michael Niedermayer wrote: > On Wed, Jul 15, 2015 at 02:46:39AM +0200, Michael Niedermayer wrote: > > On Tue, Jul 14, 2015 at 11:42:30PM +0100, Kieran Kunhya wrote: > > > OVH has poor quality connectivity by the way - this could lead to > > > performance issues in some

Re: [FFmpeg-devel] FFmpeg/MPlayer/rtmpdump possibly searching for a new server and hosting

2015-07-20 Thread Nicolas George
Le duodi 2 thermidor, an CCXXIII, Rodney Baker a écrit : > I have had very good experiences with Digital Pacific and their prices are > reasonable (by Australian standards, anyway). They seem much more expensive than their French counterpart. For example, comparing their first price with Online'

[FFmpeg-devel] [PATCH] movtextenc.c: Add support for text highlighting

2015-07-20 Thread Niklesh Lalwani
From: Niklesh This patch adds support for secondary color changes through highlight and hilightcolor box. The code is also reorganised to make it easier to read and maintain. Signed-off-by: Niklesh --- libavcodec/movtextenc.c | 164 1 file chan

Re: [FFmpeg-devel] [PATCH] configure: check for erf() and copysign()

2015-07-20 Thread Michael Niedermayer
On Mon, Jul 20, 2015 at 04:05:44AM -0300, James Almer wrote: > They are not available in some compilers. > > Signed-off-by: James Almer > --- > configure | 4 > 1 file changed, 4 insertions(+) LGTM thanks [...] -- Michael GnuPG fingerprint: 9FF2128B147EF6730BADF133611EC787040B0FAB

Re: [FFmpeg-devel] [PATCH 1/2] avfilter/x86/vf_ssim: fix some instruction comments

2015-07-20 Thread Michael Niedermayer
On Mon, Jul 20, 2015 at 12:53:36AM -0300, James Almer wrote: > Signed-off-by: James Almer > --- > libavfilter/x86/vf_ssim.asm | 4 ++-- > 1 file changed, 2 insertions(+), 2 deletions(-) LGTM thx [...] -- Michael GnuPG fingerprint: 9FF2128B147EF6730BADF133611EC787040B0FAB The real ebay di

Re: [FFmpeg-devel] [PATCH] movtextenc.c: Add support for text highlighting

2015-07-20 Thread Carl Eugen Hoyos
Niklesh Lalwani iitb.ac.in> writes: > This patch adds support for secondary color changes > through highlight and hilightcolor box. The code is > also reorganised to make it easier to read and maintain. If above description is correct (I did not check), then these should be two separate patch

[FFmpeg-devel] [PATCH 6/8] avcodec: Minor macro polishing

2015-07-20 Thread Nedeljko Babic
Use macros from aac_defines.h for adding suffixes instead of local macros. Signed-off-by: Nedeljko Babic --- libavcodec/cbrt_tablegen.h | 5 ++--- libavcodec/cbrt_tablegen_template.c| 2 +- libavcodec/sinewin.h | 17 + libavcodec/sinewin_table

[FFmpeg-devel] Add support for SBR and PS modules in fixed point AAC decoder

2015-07-20 Thread Nedeljko Babic
All the patches from “Implementation of fixed point AAC decoder” patch set that are not accepted yet (patches for SBR and PS module as well as some additional patches) are rebased to the newest version so they can be applied cleanly. Please have a look. Thanks, -Nedeljko _

[FFmpeg-devel] [PATCH 2/8] avcodec: Table creation for AAC_fixed_decoder (SBR-module)

2015-07-20 Thread Nedeljko Babic
From: Jovan Zelincevic Create tables for fixed point code. Signed-off-by: Nedeljko Babic --- libavcodec/Makefile| 5 +- .../{aacsbr_tablegen.c => aacsbr_fixed_tablegen.c} | 7 +- .../{aacsbr_tablegen.c => aacsbr_fixed_tablegen.h} | 21 +- libavcodec/aacsbr_

[FFmpeg-devel] [PATCH 5/8] avcodec: Implementation of AAC_fixed_decoder (PS-module)

2015-07-20 Thread Nedeljko Babic
From: Djordje Pesut Add fixed point implementation. Signed-off-by: Nedeljko Babic --- libavcodec/Makefile | 14 ++- libavcodec/aac_defines.h | 36 ++ libavcodec/aacps.c| 255 -- libavcodec/aacps.h|

[FFmpeg-devel] [PATCH 4/8] avcodec: Table creation for AAC_fixed_decoder (PS-module)

2015-07-20 Thread Nedeljko Babic
From: Jovan Zelincevic Add fixed point implementation of functions for generating tables. Signed-off-by: Nedeljko Babic --- libavcodec/aacps_fixed_tablegen.c| 24 +++ libavcodec/aacps_fixed_tablegen.h| 402 +++ libavcodec/aacps_tablegen.c | 73

[FFmpeg-devel] [PATCH 8/8] Edit documentation and versioning

2015-07-20 Thread Nedeljko Babic
From: Jovan Zelincevic Signed-off-by: Nedeljko Babic --- Changelog| 1 + doc/general.texi | 2 +- doc/mips.txt | 4 libavcodec/version.h | 2 +- 4 files changed, 7 insertions(+), 2 deletions(-) diff --git a/Changelog b/Changelog index 6374f68..d29ecf4 100644 --- a/

[FFmpeg-devel] [PATCH 7/8] tests: Add aac_fixed decoder test

2015-07-20 Thread Nedeljko Babic
Signed-off-by: Nedeljko Babic --- tests/fate/aac.mak | 58 +- 1 file changed, 57 insertions(+), 1 deletion(-) diff --git a/tests/fate/aac.mak b/tests/fate/aac.mak index 34823be..7ebec45 100644 --- a/tests/fate/aac.mak +++ b/tests/fate/aac.mak @

[FFmpeg-devel] [PATCH 1/8] avcodec: Template creation for AAC decoder (SBR-module)

2015-07-20 Thread Nedeljko Babic
From: Djordje Pesut Move the existing code to a new template file. Signed-off-by: Nedeljko Babic --- libavcodec/aacsbr.c| 1428 +--- libavcodec/aacsbr.h| 45 + libavcodec/{aacsbr.c => aacsbr_template.c} | 377

[FFmpeg-devel] [PATCH 3/8] avcodec: Implementation of AAC_fixed_decoder (SBR-module)

2015-07-20 Thread Nedeljko Babic
From: Djordje Pesut Add fixed poind code. Signed-off-by: Nedeljko Babic --- libavcodec/Makefile | 5 +- libavcodec/aac.h | 52 +--- libavcodec/aac_defines.h | 78 ++ libavcodec/aacdec_template.c | 14 +- libavcodec/aacsbr.c | 1 + libavcodec/aacsbr.

Re: [FFmpeg-devel] [PATCH 2/2] avfilter/x86/vf_ssim: add ff_ssim_4x4_line_xop

2015-07-20 Thread Ronald S. Bultje
Hi, On Sun, Jul 19, 2015 at 11:53 PM, James Almer wrote: > ~20% faster than ssse3. Also enabled for x86_32 \o/ Nice. No comments otherwise, feel free to commit if nobody else comments. Ronald ___ ffmpeg-devel mailing list ffmpeg-devel@ffmpeg.org htt

Re: [FFmpeg-devel] [PATCH 1/3] aacdec: move the LTP and TNS tables out of aacdectab.h

2015-07-20 Thread Nedeljko Babic
>This commit moves the tables required for encoding and decoding >LTP and TNS AAC files out of the decoder's standalone tables file >and into the shared aactab.h, where they can be used by both the >encoder and the decoder. > >This commit does not break the already-broken aac_fixed decoder. Not su

Re: [FFmpeg-devel] [PATCH] conversion of FFV1 specification from lyx to markdown

2015-07-20 Thread Michael Niedermayer
On Sat, Jul 18, 2015 at 11:23:16AM -0400, Dave Rice wrote: > > > On Jul 10, 2015, at 4:55 PM, Michael Niedermayer > > wrote: > > > > On Fri, Jul 10, 2015 at 04:19:41PM -0400, Dave Rice wrote: > >> > >>> On Jul 10, 2015, at 3:51 PM, Michael Niedermayer > >>> wrote: > >>> > >>> On Fri, Jul 10

Re: [FFmpeg-devel] [PATCH 1/2] avcodec: loongson constants redefined with macros

2015-07-20 Thread Michael Niedermayer
On Mon, Jul 20, 2015 at 11:25:48AM +0800, 周晓勇 wrote: > From 9c95155e90ff5d083e56cdd2565792c9e314302a Mon Sep 17 00:00:00 2001 > From: ZhouXiaoyong > Date: Mon, 20 Jul 2015 10:58:30 +0800 > Subject: [PATCH 1/2] avcodec: loongson constants redefined with macros applied thanks [...] -- Michael

Re: [FFmpeg-devel] [PATCH 2/2] avcodec: loongson relocate constants of idctdsp and h264pred

2015-07-20 Thread Michael Niedermayer
On Mon, Jul 20, 2015 at 01:45:49PM +0800, 周晓勇 wrote: > sorry, the last patch aborded, please review this one. > because it could avoid to use load when use immediate value ff_pb_80 in > idctdsp_mmi.c. > > --- > From 40399677fd67087db950c7f0f8ca382e5bc2cfd2 Mon Sep 17 00:00:00 2001 > From: ZhouXia

[FFmpeg-devel] Adding myself as maintainer for qsv*

2015-07-20 Thread Ivan Uskov
Hello All, I have added myself as maintainer for qsv* part. Please review. -- Best regards, Ivan mailto:ivan.us...@nablet.com 0001-Adding-myself-as-maintainer-for-qsv.patch Description: Binary data ___ ffmpeg-devel mailing

Re: [FFmpeg-devel] [PATCH] apng: Fix typos in decoder causing incorrect results

2015-07-20 Thread Paul B Mahol
On 7/19/15, Michael Niedermayer wrote: > On Sun, Jul 19, 2015 at 06:34:06PM +, Donny Yang wrote: >> Signed-off-by: Donny Yang >> --- >> libavcodec/pngdec.c | 11 ++- >> 1 file changed, 6 insertions(+), 5 deletions(-) > > works with the files i tested > ill leave review and apply to p

[FFmpeg-devel] [PATCH] libavcodec/qsvdec.c: missed MFXVideoDECODE_Close() call

2015-07-20 Thread Ivan Uskov
Hello All, Current implementation never calls MFXVideoDECODE_Close() at decoding done that may be a reason of resource leak. The attached patch solves this issue. Please review. -- Best regards, Ivan mailto:ivan.us...@nablet.com 0001-libavcodec-qsvdec.c-missed-MFXV

Re: [FFmpeg-devel] libavcodec/qsvdec_h264.c: SPS parsing now performs by MFXVideoDECODE_DecodeHeader() into libavcodec/qsvdec.c

2015-07-20 Thread Ivan Uskov
Hello Michael, Unfortunately, I do not received any feedback from both persons which maintain libavcodec/qsvdec_h264.c about details of current implementation. I still believe this is just defect of initial design. As I can see the libavcodec/qsvdec.c was changed recently by commit f929081f2e64d9

Re: [FFmpeg-devel] [PATCH 1/3] aacdec: move the LTP and TNS tables out of aacdectab.h

2015-07-20 Thread Rostislav Pehlivanov
Thanks for your response. If you are okay with it then it would make sense to push this patch to master first then because you have to rebase aactab.* to INTFLOATs anyway. Could you consider moving ltp.c into the aacdec_template.c file? It's relatively short (compared to the decoder source) and it

Re: [FFmpeg-devel] [PATCH 2/4] avcodec/mips: MSA (MIPS-SIMD-Arch) optimizations for VP9 lpf functions

2015-07-20 Thread Shivraj Patil
Hi, On Thu, Jul 9, 2015 at 9:15 AM, mailto:shivraj.pa...@imgtec.com>> wrote: +if (__msa_test_bz_v(flat)) { +p1_d = __msa_copy_u_d((v2i64) p1_out, 0); +p0_d = __msa_copy_u_d((v2i64) p0_out, 0); +q0_d = __msa_copy_u_d((v2i64) q0_out, 0); +q1_d = __msa_copy_u_d((

[FFmpeg-devel] [PATCH v3] Add support for TEA (Tiny Encryption Algorithm)

2015-07-20 Thread Vesselin Bontchev
From 492262598aa5d029b6bd9c8da4ccdfad4403bc83 Mon Sep 17 00:00:00 2001 From: Vesselin Bontchev Date: Sun, 19 Jul 2015 22:25:53 +0200 Subject: [PATCH] Add support for TEA (Tiny Encryption Algorithm) --- libavutil/Makefile |3 + libavutil/tea.c | 213 +++

Re: [FFmpeg-devel] [PATCH v2] Add support for TEA (Tiny Encryption Algorithm)

2015-07-20 Thread Vesselin Bontchev
20.07.2015, 04:15, "Michael Niedermayer" : > On Mon, Jul 20, 2015 at 02:16:28AM +0300, Vesselin Bontchev wrote: >> >>  Date: Sun, 19 Jul 2015 22:25:53 +0200 >>  Subject: [PATCH] Add support for TEA (Tiny Encryption Algorithm) > > fails fate test > reference file './tests/ref/fate/tea' not found

Re: [FFmpeg-devel] [PATCH] movtextdec.c: Correct the highlight tags

2015-07-20 Thread Philip Langdale
On Fri, 17 Jul 2015 16:03:09 +0530 Niklesh Lalwani wrote: > From: Niklesh > > Signed-off-by: Niklesh > --- > libavcodec/movtextdec.c | 6 +++--- > 1 file changed, 3 insertions(+), 3 deletions(-) > > diff --git a/libavcodec/movtextdec.c b/libavcodec/movtextdec.c > index d564cf1..ca02107 10064

Re: [FFmpeg-devel] [PATCH 2/8] avcodec: Table creation for AAC_fixed_decoder (SBR-module)

2015-07-20 Thread Michael Niedermayer
On Mon, Jul 20, 2015 at 01:36:16PM +0200, Nedeljko Babic wrote: > From: Jovan Zelincevic > > Create tables for fixed point code. > > Signed-off-by: Nedeljko Babic > --- > libavcodec/Makefile| 5 +- > .../{aacsbr_tablegen.c => aacsbr_fixed_tablegen.c} | 7 +-

Re: [FFmpeg-devel] [PATCH 1/8] avcodec: Template creation for AAC decoder (SBR-module)

2015-07-20 Thread Michael Niedermayer
On Mon, Jul 20, 2015 at 01:36:15PM +0200, Nedeljko Babic wrote: > From: Djordje Pesut > > Move the existing code to a new template file. > > Signed-off-by: Nedeljko Babic applied thanks [...] -- Michael GnuPG fingerprint: 9FF2128B147EF6730BADF133611EC787040B0FAB He who knows, does not

Re: [FFmpeg-devel] [PATCH 3/8] avcodec: Implementation of AAC_fixed_decoder (SBR-module)

2015-07-20 Thread Michael Niedermayer
On Mon, Jul 20, 2015 at 01:36:17PM +0200, Nedeljko Babic wrote: > From: Djordje Pesut > > Add fixed poind code. > > Signed-off-by: Nedeljko Babic > --- > libavcodec/Makefile | 5 +- > libavcodec/aac.h | 52 +--- > libavcodec/aac_defines.h | 78 ++ > libavcodec/

Re: [FFmpeg-devel] Adding myself as maintainer for qsv*

2015-07-20 Thread Michael Niedermayer
On Mon, Jul 20, 2015 at 04:32:38PM +0300, Ivan Uskov wrote: > Hello All, > > I have added myself as maintainer for qsv* part. > Please review. > > > -- > Best regards, > Ivan mailto:ivan.us...@nablet.com > MAINTAINERS |1 + > 1 file changed, 1 insertion(+) > 1b

Re: [FFmpeg-devel] [PATCH 1/3] aacdec: move the LTP and TNS tables out of aacdectab.h

2015-07-20 Thread Nedeljko Babic
>Thanks for your response. >If you are okay with it then it would make sense to push this patch to >master first then because you have to rebase aactab.* to INTFLOATs anyway. > I am ok with that. As I said, I don't have a problem to make necessary changes to my patch set if this patch is accepted

Re: [FFmpeg-devel] [PATCH] configure: check for erf() and copysign()

2015-07-20 Thread James Almer
On 20/07/15 6:50 AM, Michael Niedermayer wrote: > On Mon, Jul 20, 2015 at 04:05:44AM -0300, James Almer wrote: >> They are not available in some compilers. >> >> Signed-off-by: James Almer >> --- >> configure | 4 >> 1 file changed, 4 insertions(+) > > LGTM > > thanks Pushed. ___

Re: [FFmpeg-devel] [PATCH 2/2] avfilter/x86/vf_ssim: add ff_ssim_4x4_line_xop

2015-07-20 Thread James Almer
On 20/07/15 8:45 AM, Ronald S. Bultje wrote: > Hi, > > On Sun, Jul 19, 2015 at 11:53 PM, James Almer wrote: > >> ~20% faster than ssse3. Also enabled for x86_32 > > > \o/ Nice. No comments otherwise, feel free to commit if nobody else > comments. > > Ronald Pushed then, thanks.

Re: [FFmpeg-devel] [PATCH 1/2] avfilter/x86/vf_ssim: fix some instruction comments

2015-07-20 Thread James Almer
On 20/07/15 7:05 AM, Michael Niedermayer wrote: > On Mon, Jul 20, 2015 at 12:53:36AM -0300, James Almer wrote: >> Signed-off-by: James Almer >> --- >> libavfilter/x86/vf_ssim.asm | 4 ++-- >> 1 file changed, 2 insertions(+), 2 deletions(-) > > LGTM > > thx Pushed.

Re: [FFmpeg-devel] [PATCH 3/3] avdevice/decklink: Add support for decoding 8-bit RGB formats.

2015-07-20 Thread Reuben Martin
On Sunday, July 19, 2015 02:50:23 PM Chris Spencer wrote: > On 19 July 2015 at 14:30, Carl Eugen Hoyos wrote: > > Chris Spencer gmail.com> writes: > >> > > +} else if (cctx->pixel_format == AV_PIX_FMT_ARGB) { > >> > > +ctx->bmd_format = bmdFormat8BitARGB; > >> > > +} else if (cctx

Re: [FFmpeg-devel] [PATCH] movtextenc.c: Add support for text highlighting

2015-07-20 Thread Niklesh Lalwani
On Mon, Jul 20, 2015 at 4:29 PM, Carl Eugen Hoyos wrote: > Niklesh Lalwani iitb.ac.in> writes: > > > This patch adds support for secondary color changes > > through highlight and hilightcolor box. The code is > > also reorganised to make it easier to read and maintain. > > If above description i

Re: [FFmpeg-devel] [PATCH] libavcodec/qsvdec.c: missed MFXVideoDECODE_Close() call

2015-07-20 Thread Michael Niedermayer
On Mon, Jul 20, 2015 at 04:57:36PM +0300, Ivan Uskov wrote: > Hello All, > > Current implementation never calls MFXVideoDECODE_Close() at decoding > done that may be a reason of resource leak. The attached patch solves > this issue. Please review. > > > > -- > Best regards, > Ivan

Re: [FFmpeg-devel] [PATCH] conversion of FFV1 specification from lyx to markdown

2015-07-20 Thread Dave Rice
Hi Michael, > On Jul 20, 2015, at 7:52 AM, Michael Niedermayer > wrote: > > On Sat, Jul 18, 2015 at 11:23:16AM -0400, Dave Rice wrote: >> >>> On Jul 10, 2015, at 4:55 PM, Michael Niedermayer >>> wrote: >>> >>> On Fri, Jul 10, 2015 at 04:19:41PM -0400, Dave Rice wrote: > On Jul 10,

[FFmpeg-devel] [PATCH 1/2] movtextenc.c: Reorganize the code for easier maintenance

2015-07-20 Thread Niklesh Lalwani
From: Niklesh This patch reorganizes the code to make it easier to add support for different text modifier boxes and other styles in the future. Signed-off-by: Niklesh --- libavcodec/movtextenc.c | 104 ++-- 1 file changed, 65 insertions(+), 39 dele

[FFmpeg-devel] [PATCH 2/2] movtextenc.c: Add support for text highlighting

2015-07-20 Thread Niklesh Lalwani
From: Niklesh This patch takes care of the secondary color changes in ASS through highlight and hilightcolor boxes. Signed-off-by: Niklesh --- libavcodec/movtextenc.c | 60 + 1 file changed, 60 insertions(+) diff --git a/libavcodec/movtextenc.

Re: [FFmpeg-devel] [PATCH 1/3] aacdec: move the LTP and TNS tables out of aacdectab.h

2015-07-20 Thread Rostislav Pehlivanov
Yep, with this patch compute_lpc_coefs() (referenced in aacdec_template.c when applying TNS) in ltp.c prints a warning when compiling the fixed decoder, which is fine since it changed a type from INTFLOAT to float. >And it will probably be accepted first anyhow :) I'm fine either way too, it's not

[FFmpeg-devel] [PATCH] avcodec/aacsbr: fix compilation with hardcoded tables

2015-07-20 Thread James Almer
Signed-off-by: James Almer --- libavcodec/aacsbr_fixed_tablegen.c | 4 +++- libavcodec/aacsbr_tablegen.c | 4 +++- 2 files changed, 6 insertions(+), 2 deletions(-) diff --git a/libavcodec/aacsbr_fixed_tablegen.c b/libavcodec/aacsbr_fixed_tablegen.c index 7117dbd..b896d75 100644 --- a/liba

[FFmpeg-devel] [PATCH] lavf/mov: add support for sidx fragment indexes

2015-07-20 Thread Rodger Combs
The logic in mov_seek_fragment for matching track_ids to AVStream ids is almost certainly wrong, and should be corrected (by someone who knows more about the relevant structures) before this is merged. Fixes trac #3842 --- libavformat/isom.h | 1 + libavformat/mov.c | 181 +

Re: [FFmpeg-devel] [PATCH] avcodec/aacsbr: fix compilation with hardcoded tables

2015-07-20 Thread Michael Niedermayer
On Mon, Jul 20, 2015 at 04:49:37PM -0300, James Almer wrote: > Signed-off-by: James Almer > --- > libavcodec/aacsbr_fixed_tablegen.c | 4 +++- > libavcodec/aacsbr_tablegen.c | 4 +++- > 2 files changed, 6 insertions(+), 2 deletions(-) should be ok if it works [...] -- Michael GnuPG f

Re: [FFmpeg-devel] [PATCH] avcodec/aacsbr: fix compilation with hardcoded tables

2015-07-20 Thread James Almer
On 20/07/15 8:38 PM, Michael Niedermayer wrote: > On Mon, Jul 20, 2015 at 04:49:37PM -0300, James Almer wrote: >> Signed-off-by: James Almer >> --- >> libavcodec/aacsbr_fixed_tablegen.c | 4 +++- >> libavcodec/aacsbr_tablegen.c | 4 +++- >> 2 files changed, 6 insertions(+), 2 deletions(-) >

Re: [FFmpeg-devel] [PATCH 3/3] avcodec/hap: Support chunked Hap frames

2015-07-20 Thread Tom Butterworth
Thanks Michael, new patch set to replace this patch incoming. On 17 July 2015 at 20:13, Michael Niedermayer wrote: > On Thu, Jul 16, 2015 at 01:23:23PM +0100, Tom Butterworth wrote: >> --- >> libavcodec/Makefile | 4 +- >> libavcodec/hap.c | 51 + >> libavcodec/hap.h

[FFmpeg-devel] [PATCH 3/4] avcodec/hapdec: log reason for failure when texture type doesn't match stream

2015-07-20 Thread Tom Butterworth
--- libavcodec/hapdec.c | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/libavcodec/hapdec.c b/libavcodec/hapdec.c index f55d4b7..8e90904 100644 --- a/libavcodec/hapdec.c +++ b/libavcodec/hapdec.c @@ -79,8 +79,10 @@ static int setup_texture(AVCodecContext *avctx, size_t leng

[FFmpeg-devel] [PATCH 4/4] Support the Hap chunked frame format

2015-07-20 Thread Tom Butterworth
--- libavcodec/Makefile | 4 +- libavcodec/hap.c | 55 ++ libavcodec/hap.h | 37 ++- libavcodec/hapdec.c | 272 +-- libavcodec/hapenc.c | 187 ++-- tests/fate/video.mak | 3

[FFmpeg-devel] [PATCH 1/4] libavcodec/hap: Name enums, remove unused struct member

2015-07-20 Thread Tom Butterworth
--- libavcodec/hap.h | 25 - 1 file changed, 12 insertions(+), 13 deletions(-) diff --git a/libavcodec/hap.h b/libavcodec/hap.h index bd0fd37..f36d09a 100644 --- a/libavcodec/hap.h +++ b/libavcodec/hap.h @@ -29,12 +29,23 @@ #include "bytestream.h" #include "texturedsp.h"

Re: [FFmpeg-devel] [PATCH] conversion of FFV1 specification from lyx to markdown

2015-07-20 Thread Michael Niedermayer
On Mon, Jul 20, 2015 at 02:18:18PM -0400, Dave Rice wrote: > Hi Michael, > > > On Jul 20, 2015, at 7:52 AM, Michael Niedermayer > > wrote: > > > > On Sat, Jul 18, 2015 at 11:23:16AM -0400, Dave Rice wrote: > >> > >>> On Jul 10, 2015, at 4:55 PM, Michael Niedermayer > >>> wrote: > >>> > >>>

[FFmpeg-devel] [PATCH 2/4] avcodec/hapdec: don't log texture format every frame, do it once per decode session

2015-07-20 Thread Tom Butterworth
--- libavcodec/hapdec.c | 27 --- 1 file changed, 8 insertions(+), 19 deletions(-) diff --git a/libavcodec/hapdec.c b/libavcodec/hapdec.c index 7eff9e0..f55d4b7 100644 --- a/libavcodec/hapdec.c +++ b/libavcodec/hapdec.c @@ -74,7 +74,6 @@ static int setup_texture(AVCodecCon

Re: [FFmpeg-devel] [PATCH 1/3] aacdec: move the LTP and TNS tables out of aacdectab.h

2015-07-20 Thread Claudio Freire
On Mon, Jul 20, 2015 at 4:15 PM, Rostislav Pehlivanov wrote: > Yep, with this patch compute_lpc_coefs() (referenced in aacdec_template.c > when applying TNS) in ltp.c prints a warning when compiling the fixed > decoder, which is fine since it changed a type from INTFLOAT to float. > >>And it will

Re: [FFmpeg-devel] [PATCH] conversion of FFV1 specification from lyx to markdown

2015-07-20 Thread Michael Niedermayer
On Tue, Jul 21, 2015 at 02:14:11AM +0200, Michael Niedermayer wrote: [...] > ill take another quick look and then will probably push your changes > its probably easier to work on top of it then wait with pushing until > its perfect pushed it btw please remove trailing whitespace unless some of it

Re: [FFmpeg-devel] [PATCH 1/3] aacdec: move the LTP and TNS tables out of aacdectab.h

2015-07-20 Thread Claudio Freire
On Mon, Jul 20, 2015 at 8:50 AM, Nedeljko Babic wrote: >>This commit moves the tables required for encoding and decoding >>LTP and TNS AAC files out of the decoder's standalone tables file >>and into the shared aactab.h, where they can be used by both the >>encoder and the decoder. >> >>This commi

Re: [FFmpeg-devel] [PATCH 3/3] aaccoder: Improve IS phase rejection

2015-07-20 Thread Claudio Freire
On Fri, Jul 17, 2015 at 11:19 PM, Rostislav Pehlivanov wrote: >>But even if not used for avoding I/S, it can be used to pick whether >>to invert the phases, where it was clearly more stable. > In case the phase is very clearly wrong then there will be an increase in > the distortion which should c

Re: [FFmpeg-devel] [PATCH 2/3] aacenc: move the generation of ff_aac_pow34sf_tab[]

2015-07-20 Thread Claudio Freire
This will need rebasing, the fixed tablegen got in recently On Fri, Jul 17, 2015 at 6:20 PM, Rostislav Pehlivanov wrote: > This commit moves the generation of ff_aac_pow34sf_tab[] out of the > encoder and into the table generator. The original commit log for > this table in 2011 actually mentions

Re: [FFmpeg-devel] [PATCH 1/4] libavcodec/hap: Name enums, remove unused struct member

2015-07-20 Thread Michael Niedermayer
On Tue, Jul 21, 2015 at 01:12:09AM +0100, Tom Butterworth wrote: > --- > libavcodec/hap.h | 25 - > 1 file changed, 12 insertions(+), 13 deletions(-) applied thanks [...] -- Michael GnuPG fingerprint: 9FF2128B147EF6730BADF133611EC787040B0FAB The real ebay dictionar

Re: [FFmpeg-devel] [PATCH 2/4] avcodec/hapdec: don't log texture format every frame, do it once per decode session

2015-07-20 Thread Michael Niedermayer
On Tue, Jul 21, 2015 at 01:12:10AM +0100, Tom Butterworth wrote: > --- > libavcodec/hapdec.c | 27 --- > 1 file changed, 8 insertions(+), 19 deletions(-) applied thanks [...] -- Michael GnuPG fingerprint: 9FF2128B147EF6730BADF133611EC787040B0FAB What does censorshi

Re: [FFmpeg-devel] [PATCH] lavf/mov: add support for sidx fragment indexes

2015-07-20 Thread Michael Niedermayer
On Mon, Jul 20, 2015 at 03:04:55PM -0500, Rodger Combs wrote: > The logic in mov_seek_fragment for matching track_ids to AVStream ids is > almost certainly wrong, and should be corrected (by someone who knows more > about the relevant structures) before this is merged. > > Fixes trac #3842 > --- >

Re: [FFmpeg-devel] [PATCH] AAC Encoder: clipping avoidance

2015-07-20 Thread Claudio Freire
On Fri, Jul 17, 2015 at 8:42 PM, Michael Niedermayer wrote: >> If you mean a transition in time, I don't think it makes any >> difference. 0.95 is a ~0.5db change in intensity, which ought to be >> inaudible, and windowing will already take care to make the transition >> smooth. And the logic woul

Re: [FFmpeg-devel] [PATCH] AAC Encoder: clipping avoidance

2015-07-20 Thread Claudio Freire
On Mon, Jul 20, 2015 at 11:39 PM, Claudio Freire wrote: > On Fri, Jul 17, 2015 at 8:42 PM, Michael Niedermayer > wrote: >>> If you mean a transition in time, I don't think it makes any >>> difference. 0.95 is a ~0.5db change in intensity, which ought to be >>> inaudible, and windowing will alread

[FFmpeg-devel] [PATCH] avcodec/options-test: don't alloc avctx->coded_frame

2015-07-20 Thread James Almer
It's done automatically by avcodec_open2() now. Fixes memleaks in fate-libavcodec-options. Signed-off-by: James Almer --- libavcodec/options.c | 2 -- 1 file changed, 2 deletions(-) diff --git a/libavcodec/options.c b/libavcodec/options.c index 41471de..63a03ac 100644 --- a/libavcodec/options.

[FFmpeg-devel] [PATCH 1/8] lavf/network: split ff_listen_bind into ff_listen and ff_accept

2015-07-20 Thread Stephan Holljes
Signed-off-by: Stephan Holljes --- libavformat/network.c | 27 +-- libavformat/network.h | 20 2 files changed, 41 insertions(+), 6 deletions(-) diff --git a/libavformat/network.c b/libavformat/network.c index 47ade8c..7a326d2 100644 --- a/libavformat

[FFmpeg-devel] [PATCH 2/8] lavf/avio: add ffurl_accept and ffurl_handshake

2015-07-20 Thread Stephan Holljes
Signed-off-by: Stephan Holljes --- libavformat/avio.c | 19 +++ libavformat/url.h | 18 ++ 2 files changed, 37 insertions(+) diff --git a/libavformat/avio.c b/libavformat/avio.c index c188adc..1182336 100644 --- a/libavformat/avio.c +++ b/libavformat/avio.c @@ -2

[FFmpeg-devel] [PATCH 3/8] lavf/avio: add avio_accept and avio_handshake

2015-07-20 Thread Stephan Holljes
Signed-off-by: Stephan Holljes --- libavformat/avio.h| 16 libavformat/aviobuf.c | 17 + 2 files changed, 33 insertions(+) diff --git a/libavformat/avio.h b/libavformat/avio.h index d3d9bbd..b7a4fa8 100644 --- a/libavformat/avio.h +++ b/libavformat/avio.h @@

[FFmpeg-devel] [PATCH 5/8] lavf/tcp: increase range for listen and call the underlying socket operations accordingly

2015-07-20 Thread Stephan Holljes
Signed-off-by: Stephan Holljes --- libavformat/tcp.c | 16 +++- 1 file changed, 11 insertions(+), 5 deletions(-) diff --git a/libavformat/tcp.c b/libavformat/tcp.c index 6f5e175..5505945 100644 --- a/libavformat/tcp.c +++ b/libavformat/tcp.c @@ -45,7 +45,7 @@ typedef struct TCPContex

[FFmpeg-devel] [PATCH 4/8] lavf/tcp: add tcp_accept

2015-07-20 Thread Stephan Holljes
Signed-off-by: Stephan Holljes --- libavformat/tcp.c | 18 ++ 1 file changed, 18 insertions(+) diff --git a/libavformat/tcp.c b/libavformat/tcp.c index f24cad2..6f5e175 100644 --- a/libavformat/tcp.c +++ b/libavformat/tcp.c @@ -19,6 +19,7 @@ * Foundation, Inc., 51 Franklin Stre

[FFmpeg-devel] [PATCH 6/8] lavf/http: increase range for listen, handle connection closing accordingly, add http_accept, add http_handshake and move handshake logic there

2015-07-20 Thread Stephan Holljes
Signed-off-by: Stephan Holljes --- libavformat/http.c | 126 - 1 file changed, 105 insertions(+), 21 deletions(-) Changes since last version: - Introduce constants for different client modes - Add resource and http_code to AVOptions - Add

[FFmpeg-devel] [PATCH 8/8] doc/example: Add http multi-client example code

2015-07-20 Thread Stephan Holljes
Signed-off-by: Stephan Holljes --- doc/examples/Makefile | 1 + doc/examples/http_multiclient.c | 139 2 files changed, 140 insertions(+) create mode 100644 doc/examples/http_multiclient.c Changes since last version: - Use handshake API pro

[FFmpeg-devel] [PATCH 7/8] doc/protocols: document experimental mutli-client api

2015-07-20 Thread Stephan Holljes
Signed-off-by: Stephan Holljes --- doc/protocols.texi | 2 ++ 1 file changed, 2 insertions(+) diff --git a/doc/protocols.texi b/doc/protocols.texi index f152f5a..905bc09 100644 --- a/doc/protocols.texi +++ b/doc/protocols.texi @@ -304,6 +304,8 @@ autodetection in the future. If set to 1 enables

Re: [FFmpeg-devel] Controlling the server reply (was: 9/9] doc/example: Add http multi-client) example code

2015-07-20 Thread Stephan Holljes
I will send the latest version of my patchset as git send-email messages. The major changes are: - Introduction of constants to distinguish the types of client the library is dealing with. (HTTP_ONESHOT, HTTP_MULTI, HTTP_MULTI_CLIENT) - Usage of the AVOption system for communication during handshak

[FFmpeg-devel] [PATCH] avcodec/utils: silence some deprecation warnings

2015-07-20 Thread James Almer
And prevent eventual compilation failures once the relevant functions and fields are removed. Signed-off-by: James Almer --- libavcodec/utils.c | 13 + 1 file changed, 13 insertions(+) diff --git a/libavcodec/utils.c b/libavcodec/utils.c index 16601dd..d926a26 100644 --- a/libavcode

Re: [FFmpeg-devel] [PATCH] conversion of FFV1 specification from lyx to markdown

2015-07-20 Thread Dave Rice
> On Jul 20, 2015, at 8:52 PM, Michael Niedermayer > wrote: > > On Tue, Jul 21, 2015 at 02:14:11AM +0200, Michael Niedermayer wrote: > [...] >> ill take another quick look and then will probably push your changes >> its probably easier to work on top of it then wait with pushing until >> its pe

Re: [FFmpeg-devel] [PATCH 4/8] lavf/tcp: add tcp_accept

2015-07-20 Thread Stephan Holljes
On Tue, Jul 21, 2015 at 5:45 AM, Stephan Holljes wrote: > Signed-off-by: Stephan Holljes > --- > libavformat/tcp.c | 18 ++ > 1 file changed, 18 insertions(+) > > diff --git a/libavformat/tcp.c b/libavformat/tcp.c > index f24cad2..6f5e175 100644 > --- a/libavformat/tcp.c > +++ b/

Re: [FFmpeg-devel] [PATCH 4/8] lavf/tcp: add tcp_accept

2015-07-20 Thread Stephan Holljes
On Tue, Jul 21, 2015 at 5:58 AM, Stephan Holljes wrote: > On Tue, Jul 21, 2015 at 5:45 AM, Stephan Holljes > wrote: >> Signed-off-by: Stephan Holljes >> --- >> libavformat/tcp.c | 18 ++ >> 1 file changed, 18 insertions(+) >> >> diff --git a/libavformat/tcp.c b/libavformat/tcp.c

Re: [FFmpeg-devel] [PATCH 6/8] lavf/http: increase range for listen, handle connection closing accordingly, add http_accept, add http_handshake and move handshake logic there

2015-07-20 Thread Stephan Holljes
On Tue, Jul 21, 2015 at 5:45 AM, Stephan Holljes wrote: > Signed-off-by: Stephan Holljes > --- > libavformat/http.c | 126 > - > 1 file changed, 105 insertions(+), 21 deletions(-) > > Changes since last version: > - Introduce constants for d

Re: [FFmpeg-devel] [PATCH 3/3] aaccoder: Improve IS phase rejection

2015-07-20 Thread Rostislav Pehlivanov
>An alternative technique that may be better in that regard, then, >would be to measure distortion with both phases, and pick the phase >that yields the lowest distortion? That's a very good suggestion. Since the main problem with M/S and IS was phasing this might be a way to solve that too. I'll g

[FFmpeg-devel] [PATCH 2/2] avcodec: loongson optimize xvid idct with mmi

2015-07-20 Thread 周晓勇
From 0e387e3057deb1390adc1d12e738d7c91b59be18 Mon Sep 17 00:00:00 2001 From: ZhouXiaoyong Date: Tue, 21 Jul 2015 10:14:40 +0800 Subject: [PATCH 2/2] avcodec: loongson optimize xvid idct with mmi Signed-off-by: ZhouXiaoyong --- libavcodec/mips/Makefile | 2 + libavcodec/mips/xvid_

Re: [FFmpeg-devel] [PATCH 2/3] aacenc: move the generation of ff_aac_pow34sf_tab[]

2015-07-20 Thread Claudio Freire
On Mon, Jul 20, 2015 at 10:05 PM, Claudio Freire wrote: > This will need rebasing, the fixed tablegen got in recently > > > On Fri, Jul 17, 2015 at 6:20 PM, Rostislav Pehlivanov > wrote: >> This commit moves the generation of ff_aac_pow34sf_tab[] out of the >> encoder and into the table generator

[FFmpeg-devel] [PATCH 1/2] avcodec: loongson move simple idct functions to a separate file

2015-07-20 Thread 周晓勇
From f90a2009bd7fc6832cd9c1df174e52e7a1431c0e Mon Sep 17 00:00:00 2001 From: ZhouXiaoyong Date: Tue, 21 Jul 2015 10:08:21 +0800 Subject: [PATCH 1/2] avcodec: loongson move simple idct functions to a separate file Signed-off-by: ZhouXiaoyong --- libavcodec/mips/Makefile| 3 +- li