[FFmpeg-devel] avcodec: loongson3 optimized h264dsp weighted mc with mmi

2015-05-26 Thread 周晓勇
From 4c82a8b130b31beb3811dbc22da4b0e8188fa737 Mon Sep 17 00:00:00 2001 From: ZhouXiaoyong zhouxiaoy...@loongson.cn Date: Wed, 13 May 2015 22:51:59 +0800 Subject: [PATCH] avcodec: loongson3 optimized h264dsp weighted mc with mmi Signed-off-by: ZhouXiaoyong zhouxiaoy...@loongson.cn ---

Re: [FFmpeg-devel] [PATCH] avformat/mxfenc: Support storing signal standard

2015-05-26 Thread tim nicholson
On 24/05/15 02:15, Michael Niedermayer wrote: also store 1 for D10 Signed-off-by: Michael Niedermayer michae...@gmx.at --- libavformat/mxfenc.c| 11 +++ tests/ref/lavf/mxf |6 +++--- tests/ref/lavf/mxf_d10 |2 +-

[FFmpeg-devel] [PATCH 3/4] avcodec/mips: Disable uni mc optimizations

2015-05-26 Thread shivraj.patil
From: Shivraj Patil shivraj.pa...@imgtec.com Signed-off-by: Shivraj Patil shivraj.pa...@imgtec.com --- libavcodec/mips/hevcdsp_init_mips.c | 35 - libavcodec/mips/hevcdsp_mips.h | 49 - libavcodec/mips/hevcdsp_msa.c | 2482 ++- 3 files changed, 74

Re: [FFmpeg-devel] [PATCH 3/4] avcodec/mips: Disable uni mc optimizations

2015-05-26 Thread Michael Niedermayer
On Tue, May 26, 2015 at 04:49:15PM +0530, shivraj.pa...@imgtec.com wrote: From: Shivraj Patil shivraj.pa...@imgtec.com Signed-off-by: Shivraj Patil shivraj.pa...@imgtec.com please include in each patch/commit a commit message which explains what the patch does, why it does it and how it does

Re: [FFmpeg-devel] [PATCH 1/4] avutil/mips: Restructure of generic macros

2015-05-26 Thread Michael Niedermayer
On Tue, May 26, 2015 at 04:49:13PM +0530, shivraj.pa...@imgtec.com wrote: From: Shivraj Patil shivraj.pa...@imgtec.com Recently we have done little restructuring/styling changes to the optimization sources at our end (like generic macro definitions, their use to reduce code lines, better

Re: [FFmpeg-devel] [PATCH] avformat/mxfenc: Support storing signal standard

2015-05-26 Thread Michael Niedermayer
On Tue, May 26, 2015 at 09:45:28AM +0100, tim nicholson wrote: On 24/05/15 02:15, Michael Niedermayer wrote: also store 1 for D10 Signed-off-by: Michael Niedermayer michae...@gmx.at --- libavformat/mxfenc.c| 11 +++ tests/ref/lavf/mxf |6 +++---

[FFmpeg-devel] [PATCH 4/4] avcodec/mips: Restructure as per avutil/mips/generic_macros_msa.h

2015-05-26 Thread shivraj.patil
From: Shivraj Patil shivraj.pa...@imgtec.com Signed-off-by: Shivraj Patil shivraj.pa...@imgtec.com --- libavcodec/mips/hevc_macros_msa.h | 34 + libavcodec/mips/hevcdsp_msa.c | 2428 + 2 files changed, 876 insertions(+), 1586 deletions(-) create mode

[FFmpeg-devel] [PATCH 2/4] avcodec/mips: Restructure as per avutil/mips/generic_macros_msa.h

2015-05-26 Thread shivraj.patil
From: Shivraj Patil shivraj.pa...@imgtec.com Signed-off-by: Shivraj Patil shivraj.pa...@imgtec.com --- libavcodec/mips/h264dsp_msa.c | 1758 +++-- 1 file changed, 634 insertions(+), 1124 deletions(-) diff --git a/libavcodec/mips/h264dsp_msa.c

[FFmpeg-devel] [PATCH 1/4] avutil/mips: Restructure of generic macros

2015-05-26 Thread shivraj.patil
From: Shivraj Patil shivraj.pa...@imgtec.com Recently we have done little restructuring/styling changes to the optimization sources at our end (like generic macro definitions, their use to reduce code lines, better code alignments etc). This change was also necessary to avoid repeated review

[FFmpeg-devel] [PATCH] avformat/concatdec: Enable auto_convert by default

2015-05-26 Thread Michael Niedermayer
Users have no means to find out from a failure how to make it work or is it preferred to check and print a warning for h264 concat without auto_convert ? Signed-off-by: Michael Niedermayer michae...@gmx.at --- libavformat/concatdec.c |2 +- 1 file changed, 1 insertion(+), 1 deletion(-)

[FFmpeg-devel] [PATCH]lavf/riffenc: Set correct block align for mp2

2015-05-26 Thread Carl Eugen Hoyos
Hi! Attached patch from 2002 fixes ticket #4565. Michael added a comment in 359fa0fe that some demuxers may not like it though. Please comment, Carl Eugen From 816005ddef962b42b48fc5d6dc70b70c7f1f0d72 Mon Sep 17 00:00:00 2001 From: Juanjo pule...@users.sourceforge.net Date: Tue, 26 May 2015

Re: [FFmpeg-devel] [PATCH]lavf/riffenc: Set correct block align for mp2

2015-05-26 Thread Michael Niedermayer
On Tue, May 26, 2015 at 11:26:25PM +0200, Carl Eugen Hoyos wrote: Hi! Attached patch from 2002 fixes ticket #4565. Michael added a comment in 359fa0fe that some demuxers may not like it though. Please comment, Carl Eugen [...] diff --git a/libavformat/riffenc.c b/libavformat/riffenc.c

Re: [FFmpeg-devel] [PATCH] avutil: Add av_q2intfloat()

2015-05-26 Thread Michael Niedermayer
On Sun, May 24, 2015 at 02:33:34PM +0200, Michael Niedermayer wrote: Signed-off-by: Michael Niedermayer michae...@gmx.at --- libavutil/rational.c | 48 libavutil/rational.h |7 +++ 2 files changed, 55 insertions(+) applied [...] --