[FFmpeg-devel] [PATCH] libavcodec/mips/h264dsp_msa.c: fix type in some function parameters

2016-10-12 Thread Vicente Olivert Riera
bc26fe89275c267d169b468356c82ee59874407d: avcodec/h264: Use ptrdiff_t for (bi)weight functions That commit changed the data type of some function parameters in some function definitions. However, the implementation of those functions in libavcodec/mips/h264dsp_msa.c wasn't changed accordingly. Signed-off-by: Vicente Olivert

[FFmpeg-devel] [PATCH v7 3/3] mips: add support for R6

2016-02-24 Thread Vicente Olivert Riera
is sufficient to fix the problem. Signed-off-by: Vicente Olivert Riera <vincent.ri...@imgtec.com> --- Changes v1 -> v7: - Nothing. libavcodec/mips/aaccoder_mips.c | 4 libavcodec/mips/aacdec_mips.h | 2 ++ libavcodec/mips/aacpsdsp_mips.c

[FFmpeg-devel] [PATCH v7 1/3] mips: improve detection of ISAs, FPU and ASEs (DSP, MSA)

2016-02-24 Thread Vicente Olivert Riera
Signed-off-by: Vicente Olivert Riera <vincent.ri...@imgtec.com> --- Changes v6 -> v7: - Do not pass -msoft-float. Leave the mipsfpu handling as it was before, so nothing changes. This could be improbed in the future. Changes v5 -> v6: - Multiple changes: - Use separate if

[FFmpeg-devel] [PATCH v7 2/3] mips: do not disable any feature for generic cores

2016-02-24 Thread Vicente Olivert Riera
We don't know which features are available when the user selects a generic core, so don't disable anything by default and let the user decide. Signed-off-by: Vicente Olivert Riera <vincent.ri...@imgtec.com> --- Changes v4 -> v7: - Nothing. Changes v3 -> v4: - Minor change in th

Re: [FFmpeg-devel] [PATCH v6 1/3] mips: improve detection of ISAs, FPU and ASEs (DSP, MSA)

2016-01-25 Thread Vicente Olivert Riera
On 21/01/16 23:17, Michael Niedermayer wrote: > On Wed, Jan 20, 2016 at 02:33:21PM +0000, Vicente Olivert Riera wrote: >> On 20/01/16 13:15, Michael Niedermayer wrote: >>> On Wed, Jan 20, 2016 at 12:21:37PM +0000, Vicente Olivert Riera wrote: >>>> On 20/01/16 12

Re: [FFmpeg-devel] [PATCH v6 1/3] mips: improve detection of ISAs, FPU and ASEs (DSP, MSA)

2016-01-25 Thread Vicente Olivert Riera
On 25/01/16 11:32, Michael Niedermayer wrote: > On Mon, Jan 25, 2016 at 10:35:12AM +0000, Vicente Olivert Riera wrote: >> On 21/01/16 23:17, Michael Niedermayer wrote: >>> On Wed, Jan 20, 2016 at 02:33:21PM +0000, Vicente Olivert Riera wrote: >>>> On 20/01/16 13

Re: [FFmpeg-devel] [PATCH v6 1/3] mips: improve detection of ISAs, FPU and ASEs (DSP, MSA)

2016-01-20 Thread Vicente Olivert Riera
Hello Michael, On 19/01/16 22:11, Michael Niedermayer wrote: > On Thu, Jan 14, 2016 at 02:59:03PM +0000, Vicente Olivert Riera wrote: >> Signed-off-by: Vicente Olivert Riera <vincent.ri...@imgtec.com> >> --- >> Changes v5 -> v6: >> - Multiple changes:

Re: [FFmpeg-devel] [PATCH v6 1/3] mips: improve detection of ISAs, FPU and ASEs (DSP, MSA)

2016-01-20 Thread Vicente Olivert Riera
On 20/01/16 12:05, Michael Niedermayer wrote: > On Wed, Jan 20, 2016 at 11:37:52AM +0000, Vicente Olivert Riera wrote: >> Hello Michael, >> >> On 19/01/16 22:11, Michael Niedermayer wrote: >>> On Thu, Jan 14, 2016 at 02:59:03PM +, Vicente Olivert Riera wrot

Re: [FFmpeg-devel] [PATCH v6 1/3] mips: improve detection of ISAs, FPU and ASEs (DSP, MSA)

2016-01-20 Thread Vicente Olivert Riera
On 20/01/16 13:15, Michael Niedermayer wrote: > On Wed, Jan 20, 2016 at 12:21:37PM +0000, Vicente Olivert Riera wrote: >> On 20/01/16 12:05, Michael Niedermayer wrote: >>> On Wed, Jan 20, 2016 at 11:37:52AM +0000, Vicente Olivert Riera wrote: >>>> Hello Michae

[FFmpeg-devel] [PATCH v6 3/3] mips: add support for R6

2016-01-14 Thread Vicente Olivert Riera
is sufficient to fix the problem. Signed-off-by: Vicente Olivert Riera <vincent.ri...@imgtec.com> --- Changes v5 -> v6: - Nothing. Changes v4 -> v5: - Nothing. Changes v3 -> v4: - Nothing. Changes v2 -> v3: - Nothing. Changes v1 -> v2: - Nothing. libavcodec

[FFmpeg-devel] [PATCH v6 2/3] mips: do not disable any feature for generic cores

2016-01-14 Thread Vicente Olivert Riera
We don't know which features are available when the user selects a generic core, so don't disable anything by default and let the user decide. Signed-off-by: Vicente Olivert Riera <vincent.ri...@imgtec.com> --- Changes v4 -> v6: - Nothing. Changes v4 -> v5: - Nothing. Chan

[FFmpeg-devel] [PATCH v6 1/3] mips: improve detection of ISAs, FPU and ASEs (DSP, MSA)

2016-01-14 Thread Vicente Olivert Riera
Signed-off-by: Vicente Olivert Riera <vincent.ri...@imgtec.com> --- Changes v5 -> v6: - Multiple changes: - Use separate if blocks when detecting the MIPS ISA, this way when a block disables one ISA it will be detected by the next one. Before the elif was preventing this t

Re: [FFmpeg-devel] [PATCH v4 11/14] mips: do not disable any feature for generic cores

2016-01-06 Thread Vicente Olivert Riera
Dear Andreas Cadhalpun and Michael Niedermayer, On 30/12/15 21:02, Andreas Cadhalpun wrote: On 30.12.2015 20:35, Michael Niedermayer wrote: On Fri, Dec 04, 2015 at 03:48:27PM +, Vicente Olivert Riera wrote: We don't know which features are available when the user selects a generic core

[FFmpeg-devel] [PATCH v5 3/4] mips: add support for R6

2016-01-06 Thread Vicente Olivert Riera
is sufficient to fix the problem. Signed-off-by: Vicente Olivert Riera <vincent.ri...@imgtec.com> --- Changes v4 -> v5: - Nothing. Changes v3 -> v4: - Nothing. Changes v2 -> v3: - Nothing. Changes v1 -> v2: - Nothing. libavcodec/mips/aaccoder_mips.c | 4 +++

[FFmpeg-devel] [PATCH v5 4/4] mips: display a warning message when using an unknown CPU

2016-01-06 Thread Vicente Olivert Riera
Signed-off-by: Vicente Olivert Riera <vincent.ri...@imgtec.com> --- Changes v4 -> v5: - Nothing. Changes v3 -> v4: - Use a more accurate warning message. Changes v2 -> v3: - This patch has been added for v3. Changes v1 -> v2: - This patch didn't exist at that point. c

[FFmpeg-devel] [PATCH v5 2/4] mips: do not disable any feature for generic cores

2016-01-06 Thread Vicente Olivert Riera
We don't know which features are available when the user selects a generic core, so don't disable anything by default and let the user decide. Signed-off-by: Vicente Olivert Riera <vincent.ri...@imgtec.com> --- Changes v4 -> v5: - Nothing. Changes v3 -> v4: - Minor change in th

[FFmpeg-devel] [PATCH v5 1/4] mips: improve detection of ISAs, FPU and ASEs (DSP, MSA)

2016-01-06 Thread Vicente Olivert Riera
Signed-off-by: Vicente Olivert Riera <vincent.ri...@imgtec.com> --- Changes v4 -> v5: - Check for msa.h and disable msa if not found. Changes v3 -> v4: - Nothing. Changes v2 -> v3: - Nothing. Changes v1 -> v2: - Add a block of code for mipsdspr2 which was previously plac

Re: [FFmpeg-devel] [PATCH v3 01/14] mips: rename mipsdspr1 to mipsdsp

2015-12-04 Thread Vicente Olivert Riera
On 04/12/15 01:36, Michael Niedermayer wrote: > On Thu, Dec 03, 2015 at 01:22:16PM +0000, Vicente Olivert Riera wrote: >> Signed-off-by: Vicente Olivert Riera <vincent.ri...@imgtec.com> >> --- >> Changes v2 -> v3: >> - Document it in the Changelog >>

[FFmpeg-devel] [PATCH v4 14/14] mips: display a warning message when using an unknown CPU

2015-12-04 Thread Vicente Olivert Riera
Signed-off-by: Vicente Olivert Riera <vincent.ri...@imgtec.com> --- Changes v3 -> v4: - Use a more accurate warning message. Changes v2 -> v3: - This patch has been added for v3. Changes v1 -> v2: - This patch didn't exist at that point. configure | 2 ++ 1 file change

[FFmpeg-devel] [PATCH v4 11/14] mips: do not disable any feature for generic cores

2015-12-04 Thread Vicente Olivert Riera
We don't know which features are available when the user selects a generic core, so don't disable anything by default and let the user decide. Signed-off-by: Vicente Olivert Riera <vincent.ri...@imgtec.com> --- Changes v3 -> v4: - Minor change in the commit log: remove "let's"

Re: [FFmpeg-devel] [PATCH v3 14/14] mips: display a warning message when using an unknown CPU

2015-12-04 Thread Vicente Olivert Riera
Hello Andreas, On 04/12/15 14:32, Andreas Cadhalpun wrote: > On 03.12.2015 14:22, Vicente Olivert Riera wrote: >> Signed-off-by: Vicente Olivert Riera <vincent.ri...@imgtec.com> >> --- >> Changes v2 -> v3: >> - This patch has been added for v3. >> &g

[FFmpeg-devel] [PATCH v3 05/14] mips: add i6400 core optimizations

2015-12-03 Thread Vicente Olivert Riera
Signed-off-by: Vicente Olivert Riera <vincent.ri...@imgtec.com> --- Changes v2 -> v3: - Nothing. Changes v1 -> v2: - Nothing. configure | 7 --- 1 file changed, 4 insertions(+), 3 deletions(-) diff --git a/configure b/configure index 24ea270..62dd3a4 100755 --- a/con

[FFmpeg-devel] [PATCH v3 06/14] mips: i6400 core does have an FPU, so not disable it

2015-12-03 Thread Vicente Olivert Riera
Signed-off-by: Vicente Olivert Riera <vincent.ri...@imgtec.com> --- Changes v2 -> v3: - Nothing. Changes v1 -> v2: - Fix a grammar mistake in the commit log. Change "do has" by "does have". Thanks to Moritz Barsnick: https://lists.ffmpeg.org/pipermail/f

[FFmpeg-devel] [PATCH v3 04/14] mips: remove --mips64r6 configure option

2015-12-03 Thread Vicente Olivert Riera
Olivert Riera <vincent.ri...@imgtec.com> --- Changes v2 -> v3: - Document it in the Changelog. Changes v1 -> v2: - Nothing. Changelog | 1 + configure | 9 - 2 files changed, 1 insertion(+), 9 deletions(-) diff --git a/Changelog b/Changelog index c28d854..705742f 100644 ---

[FFmpeg-devel] [PATCH v3 03/14] mips: add p5600 core optimizations

2015-12-03 Thread Vicente Olivert Riera
Signed-off-by: Vicente Olivert Riera <vincent.ri...@imgtec.com> --- Changes v2 -> v3: - Nothing. Changes v1 -> v2: - Nothing. configure | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/configure b/configure index d0631a0..0397ea1 100755 --- a/configure +++

[FFmpeg-devel] [PATCH v3 13/14] mips: add support for R6

2015-12-03 Thread Vicente Olivert Riera
is sufficient to fix the problem. Signed-off-by: Vicente Olivert Riera <vincent.ri...@imgtec.com> --- Changes v2 -> v3: - Nothing. Changes v1 -> v2: - Nothing. libavcodec/mips/aaccoder_mips.c | 4 libavcodec/mips/aacdec_mips.h | 2 ++ lib

[FFmpeg-devel] [PATCH v3 11/14] mips: do not disable any feature for generic cores

2015-12-03 Thread Vicente Olivert Riera
We don't know which features are available when the user selects a generic core, so let's don't disable anything by default and let the user decide. Signed-off-by: Vicente Olivert Riera <vincent.ri...@imgtec.com> --- Changes v2 -> v3: - Change the logic of this patch. Instead of

[FFmpeg-devel] [PATCH v3 14/14] mips: display a warning message when using an unknown CPU

2015-12-03 Thread Vicente Olivert Riera
Signed-off-by: Vicente Olivert Riera <vincent.ri...@imgtec.com> --- Changes v2 -> v3: - This patch has been added for v3. Changes v1 -> v2: - This patch didn't exist at that point. configure | 2 ++ 1 file changed, 2 insertions(+) diff --git a/configure b/configure index 7d06

[FFmpeg-devel] [PATCH v3 02/14] mips: remove --mips32r5 configure option

2015-12-03 Thread Vicente Olivert Riera
Olivert Riera <vincent.ri...@imgtec.com> --- Changes v2 -> v3: - Document it in the Changelog. Changes v1 -> v2: - Nothing. Changelog | 2 +- configure | 20 +--- 2 files changed, 2 insertions(+), 20 deletions(-) diff --git a/Changelog b/Changelog index 600ffea..c2

Re: [FFmpeg-devel] [PATCH v3 11/14] mips: do not disable any feature for generic cores

2015-12-03 Thread Vicente Olivert Riera
Hello all, On 03/12/15 13:22, Vicente Olivert Riera wrote: > We don't know which features are available when the user selects a > generic core, so let's don't disable anything by default and let the > user decide. > > Signed-off-by: Vicente Olivert Riera <vincen

[FFmpeg-devel] [PATCH v3 01/14] mips: rename mipsdspr1 to mipsdsp

2015-12-03 Thread Vicente Olivert Riera
Signed-off-by: Vicente Olivert Riera <vincent.ri...@imgtec.com> --- Changes v2 -> v3: - Document it in the Changelog Changes v1 -> v2: - Remove a block of code for mipsdspr2 which wasn't intended to be in this patch and it was causing a syntax error in the configure script.

[FFmpeg-devel] [PATCH v3 10/14] mips: put "disable mipsfpu" in a better place for loongson

2015-12-03 Thread Vicente Olivert Riera
Let's disable the ISAs first, and then the core capabilities, as we do for the rest of the cores. This way the code is better organized. Signed-off-by: Vicente Olivert Riera <vincent.ri...@imgtec.com> --- Changes v2 -> v3: - Nothing. Changes v1 -> v2: - Nothing. configure |

[FFmpeg-devel] [PATCH v3 12/14] mips: improve detection of ISAs, FPU and ASEs (DSP, MSA)

2015-12-03 Thread Vicente Olivert Riera
Signed-off-by: Vicente Olivert Riera <vincent.ri...@imgtec.com> --- Changes v2 -> v3: - Nothing. Changes v1 -> v2: - Add a block of code for mipsdspr2 which was previously placed in the first patch of this series causing a syntax error in the configure script. https://list

[FFmpeg-devel] [PATCH v3 07/14] mips: i6400 core is not mips32r2, so disable mips32r2

2015-12-03 Thread Vicente Olivert Riera
Signed-off-by: Vicente Olivert Riera <vincent.ri...@imgtec.com> --- Changes v2 -> v3: - Nothing. Changes v1 -> v2: - Nothing. configure | 1 + 1 file changed, 1 insertion(+) diff --git a/configure b/configure index 045f5bf..ca6e0a0 100755 --- a/configure +++ b/configure @@ -41

[FFmpeg-devel] [PATCH v3 09/14] mips: add mips32r6 architecture variant

2015-12-03 Thread Vicente Olivert Riera
Signed-off-by: Vicente Olivert Riera <vincent.ri...@imgtec.com> --- Changes v2 -> v3: - Nothing. Changes v1 -> v2: - Nothing. configure | 12 1 file changed, 12 insertions(+) diff --git a/configure b/configure index 0254e9a..5cf487a 100755 --- a/configure +++

[FFmpeg-devel] [PATCH v3 08/14] mips: add mips64r2 architecture variant

2015-12-03 Thread Vicente Olivert Riera
Signed-off-by: Vicente Olivert Riera <vincent.ri...@imgtec.com> --- Changes v2 -> v3: - Nothing. Changes v1 -> v2: - Nothing. configure | 12 1 file changed, 12 insertions(+) diff --git a/configure b/configure index ca6e0a0..0254e9a 100755 --- a/configure +++

Re: [FFmpeg-devel] [PATCH v2 11/13] Remove the MIPS "generic" core in favor of "*"

2015-12-02 Thread Vicente Olivert Riera
Dear Andreas Cadhalpun, On 20/11/15 20:10, Andreas Cadhalpun wrote: > On 18.11.2015 12:13, Vicente Olivert Riera wrote: >> There is no point to have a "generic" core when we can catch all >> unsupported cores with the "*" option, so remove it. >>

Re: [FFmpeg-devel] [PATCH v2 02/13] Remove --mips32r5 configure option

2015-11-18 Thread Vicente Olivert Riera
Dear Michael Niedermayer, On 11/18/2015 04:59 PM, Michael Niedermayer wrote: > On Wed, Nov 18, 2015 at 11:13:38AM +0000, Vicente Olivert Riera wrote: >> Having a configure option with the same name as a MIPS ISA is confusing, >> so better to remove it. This option was being u

[FFmpeg-devel] [PATCH v2 02/13] Remove --mips32r5 configure option

2015-11-18 Thread Vicente Olivert Riera
Olivert Riera <vincent.ri...@imgtec.com> --- Changes v1 -> v2: - Nothing. configure | 20 +--- 1 files changed, 1 insertions(+), 19 deletions(-) diff --git a/configure b/configure index 0905ec2..83b2a64 100755 --- a/configure +++ b/configure @@ -378,7 +378,6 @@ Optimizatio

[FFmpeg-devel] [PATCH v2 01/13] Rename mipsdspr1 to mipsdsp

2015-11-18 Thread Vicente Olivert Riera
Signed-off-by: Vicente Olivert Riera <vincent.ri...@imgtec.com> --- Changes v1 -> v2: - Remove a block of code for mipsdspr2 which wasn't intended to be in this patch and it was causing a syntax error in the configure script. Highlighted by Michael Niedermayer: https://lists.f

[FFmpeg-devel] [PATCH v2 07/13] MIPS i6400 core is not mips32r2, so disable mips32r2

2015-11-18 Thread Vicente Olivert Riera
Signed-off-by: Vicente Olivert Riera <vincent.ri...@imgtec.com> --- Changes v1 -> v2: - Nothing. configure |1 + 1 files changed, 1 insertions(+), 0 deletions(-) diff --git a/configure b/configure index d14b02b..ca5c784 100755 --- a/configure +++ b/configure @@ -4098,6 +4098,

[FFmpeg-devel] [PATCH v2 08/13] Add mips64r2 architecture variant

2015-11-18 Thread Vicente Olivert Riera
Signed-off-by: Vicente Olivert Riera <vincent.ri...@imgtec.com> --- Changes v1 -> v2: - Nothing. configure | 12 1 files changed, 12 insertions(+), 0 deletions(-) diff --git a/configure b/configure index ca5c784..761c4cb 100755 --- a/configure +++ b/configure @@ -1623,

[FFmpeg-devel] [PATCH v2 06/13] MIPS i6400 core does have an FPU, so not disable it

2015-11-18 Thread Vicente Olivert Riera
Signed-off-by: Vicente Olivert Riera <vincent.ri...@imgtec.com> --- Changes v1 -> v2: - Fix a grammar mistake in the commit log. Change "do has" by "does have". Thanks to Moritz Barsnick: https://lists.ffmpeg.org/pipermail/ffmpeg-devel/2015-November/183437.html

[FFmpeg-devel] [PATCH v2 09/13] Add mips32r6 architecture variant

2015-11-18 Thread Vicente Olivert Riera
Signed-off-by: Vicente Olivert Riera <vincent.ri...@imgtec.com> --- Changes v1 -> v2: - Nothing. configure | 12 1 files changed, 12 insertions(+), 0 deletions(-) diff --git a/configure b/configure index 761c4cb..b31567e 100755 --- a/configure +++ b/configure @@ -1624,

[FFmpeg-devel] [PATCH v2 12/13] Improve detection of MIPS ISAs, FPU and ASEs (DSP, MSA)

2015-11-18 Thread Vicente Olivert Riera
Signed-off-by: Vicente Olivert Riera <vincent.ri...@imgtec.com> --- Changes v1 -> v2: - Add a block of code for mipsdspr2 which was previously placed in the first patch of this series causing a syntax error in the configure script. https://lists.ffmpeg.org/pipermail/ffmpeg-d

[FFmpeg-devel] [PATCH v2 05/13] Add MIPS i6400 core optimizations

2015-11-18 Thread Vicente Olivert Riera
Signed-off-by: Vicente Olivert Riera <vincent.ri...@imgtec.com> --- Changes v1 -> v2: - Nothing. configure |7 --- 1 files changed, 4 insertions(+), 3 deletions(-) diff --git a/configure b/configure index 8598fe1..d0685f3 100755 --- a/configure +++ b/configure @@ -4101,9

[FFmpeg-devel] [PATCH v2 03/13] Add MIPS p5600 core optimizations

2015-11-18 Thread Vicente Olivert Riera
Signed-off-by: Vicente Olivert Riera <vincent.ri...@imgtec.com> --- Changes v1 -> v2: - Nothing. configure |5 +++-- 1 files changed, 3 insertions(+), 2 deletions(-) diff --git a/configure b/configure index 83b2a64..ea129be 100755 --- a/configure +++ b/configure @@ -4094,8 +4094,

[FFmpeg-devel] [PATCH v2 13/13] Add support for MIPS R6

2015-11-18 Thread Vicente Olivert Riera
is sufficient to fix the problem. Signed-off-by: Vicente Olivert Riera <vincent.ri...@imgtec.com> --- Changes v1 -> v2: - Nothing. libavcodec/mips/aaccoder_mips.c |4 libavcodec/mips/aacdec_mips.h |2 ++ libavcodec/mips/aacpsdsp_mips.c

[FFmpeg-devel] [PATCH v2 11/13] Remove the MIPS "generic" core in favor of "*"

2015-11-18 Thread Vicente Olivert Riera
There is no point to have a "generic" core when we can catch all unsupported cores with the "*" option, so remove it. Signed-off-by: Vicente Olivert Riera <vincent.ri...@imgtec.com> --- Changes v1 -> v2: - Nothing. configure |4 1 files changed, 0 insert

Re: [FFmpeg-devel] [PATCH 01/13] Rename mipsdspr1 to mipsdsp

2015-11-18 Thread Vicente Olivert Riera
Dear Michael Niedermayer, On 11/17/2015 09:17 PM, Michael Niedermayer wrote: > On Mon, Nov 16, 2015 at 02:57:07PM +0000, Vicente Olivert Riera wrote: > [...] >> index 9a736ce..0461a97 100755 >> --- a/configure >> +++ b/configure >> @@ -380,7 +380,7 @@ Opti

Re: [FFmpeg-devel] [PATCH 06/13] MIPS i6400 core do has an FPU, so not disable it

2015-11-17 Thread Vicente Olivert Riera
Dear Moritz Barsnick, On 11/17/2015 04:20 PM, Moritz Barsnick wrote: > On Tue, Nov 17, 2015 at 15:07:56 +0000, Vicente Olivert Riera wrote: >> file. Do you mean the patch subject instead of patch name? If so, what's >> the error? > > Indeed, the grammar: > >> [P

Re: [FFmpeg-devel] [PATCH 06/13] MIPS i6400 core do has an FPU, so not disable it

2015-11-17 Thread Vicente Olivert Riera
MIPS i6400 core do has an FPU, so not disable it > > Signed-off-by: Vicente Olivert Riera <vincent.ri...@imgtec.com> > --- > configure |1 - > 1 files changed, 0 insertions(+), 1 deletions(-) > > diff --git a/configure b/configure > index e1c8851..ff5e132 100755 &

[FFmpeg-devel] [PATCH 04/13] Remove --mips64r6 configure option

2015-11-16 Thread Vicente Olivert Riera
Olivert Riera <vincent.ri...@imgtec.com> --- configure |9 - 1 files changed, 0 insertions(+), 9 deletions(-) diff --git a/configure b/configure index fa5207c..d180c0d 100755 --- a/configure +++ b/configure @@ -378,7 +378,6 @@ Optimization options (experts only): --disabl

[FFmpeg-devel] [PATCH 13/13] Add support for MIPS R6

2015-11-16 Thread Vicente Olivert Riera
is sufficient to fix the problem. Signed-off-by: Vicente Olivert Riera <vincent.ri...@imgtec.com> --- libavcodec/mips/aaccoder_mips.c |4 libavcodec/mips/aacdec_mips.h |2 ++ libavcodec/mips/aacpsdsp_mips.c |4 libavcodec/mips/aacpsy_

[FFmpeg-devel] [PATCH 06/13] MIPS i6400 core do has an FPU, so not disable it

2015-11-16 Thread Vicente Olivert Riera
Signed-off-by: Vicente Olivert Riera <vincent.ri...@imgtec.com> --- configure |1 - 1 files changed, 0 insertions(+), 1 deletions(-) diff --git a/configure b/configure index e1c8851..ff5e132 100755 --- a/configure +++ b/configure @@ -4100,7 +4100,6 @@ elif enabled mips; then

[FFmpeg-devel] [PATCH 05/13] Add MIPS i6400 core optimizations

2015-11-16 Thread Vicente Olivert Riera
Signed-off-by: Vicente Olivert Riera <vincent.ri...@imgtec.com> --- configure |7 --- 1 files changed, 4 insertions(+), 3 deletions(-) diff --git a/configure b/configure index d180c0d..e1c8851 100755 --- a/configure +++ b/configure @@ -4101,9 +4101,10 @@ elif enable

[FFmpeg-devel] [PATCH 01/13] Rename mipsdspr1 to mipsdsp

2015-11-16 Thread Vicente Olivert Riera
Signed-off-by: Vicente Olivert Riera <vincent.ri...@imgtec.com> --- Makefile |2 +- arch.mak |2 +- configure | 34 + libavcodec/aa

[FFmpeg-devel] [PATCH 10/13] Put "disable mipsfpu" in a better place for loongson

2015-11-16 Thread Vicente Olivert Riera
Let's disable the ISAs first, and then the core capabilities, as we do for the rest of the cores. This way the code is better organized. Signed-off-by: Vicente Olivert Riera <vincent.ri...@imgtec.com> --- configure |2 +- 1 files changed, 1 insertions(+), 1 deletions(-) diff

[FFmpeg-devel] [PATCH 11/13] Remove the MIPS "generic" core in favor of "*"

2015-11-16 Thread Vicente Olivert Riera
There is no point to have a "generic" core when we can catch all unsupported cores with the "*" option, so remove it. Signed-off-by: Vicente Olivert Riera <vincent.ri...@imgtec.com> --- configure |4 1 files changed, 0 insertions(+), 4 deletions(-) diff --g

[FFmpeg-devel] [PATCH 12/13] Improve detection of MIPS ISAs, FPU and ASEs (DSP, MSA)

2015-11-16 Thread Vicente Olivert Riera
Signed-off-by: Vicente Olivert Riera <vincent.ri...@imgtec.com> --- configure | 77 ++-- 1 files changed, 59 insertions(+), 18 deletions(-) diff --git a/configure b/configure index 1bfcc67..4173684 100755 --- a/configure +++ b/con

[FFmpeg-devel] [PATCH 02/13] Remove --mips32r5 configure option

2015-11-16 Thread Vicente Olivert Riera
Olivert Riera <vincent.ri...@imgtec.com> --- configure | 20 +--- 1 files changed, 1 insertions(+), 19 deletions(-) diff --git a/configure b/configure index 0461a97..3fd156e 100755 --- a/configure +++ b/configure @@ -378,7 +378,6 @@ Optimization options (experts only): --d

[FFmpeg-devel] [PATCH 03/13] Add MIPS p5600 core optimizations

2015-11-16 Thread Vicente Olivert Riera
Signed-off-by: Vicente Olivert Riera <vincent.ri...@imgtec.com> --- configure |5 +++-- 1 files changed, 3 insertions(+), 2 deletions(-) diff --git a/configure b/configure index 3fd156e..fa5207c 100755 --- a/configure +++ b/configure @@ -4094,8 +4094,9 @@ elif enable

[FFmpeg-devel] [PATCH 09/13] Add mips32r6 architecture variant

2015-11-16 Thread Vicente Olivert Riera
Signed-off-by: Vicente Olivert Riera <vincent.ri...@imgtec.com> --- configure | 12 1 files changed, 12 insertions(+), 0 deletions(-) diff --git a/configure b/configure index 50db22b..2f5456c 100755 --- a/configure +++ b/configure @@ -1624,6 +1624,7 @@ ARCH_EXT_LIS

[FFmpeg-devel] [PATCH 08/13] Add mips64r2 architecture variant

2015-11-16 Thread Vicente Olivert Riera
Signed-off-by: Vicente Olivert Riera <vincent.ri...@imgtec.com> --- configure | 12 1 files changed, 12 insertions(+), 0 deletions(-) diff --git a/configure b/configure index 3530327..50db22b 100755 --- a/configure +++ b/configure @@ -1623,6 +1623,7 @@ ARCH_EXT_LI

[FFmpeg-devel] [PATCH 07/13] MIPS i6400 core is not mips32r2, so disable mips32r2

2015-11-16 Thread Vicente Olivert Riera
Signed-off-by: Vicente Olivert Riera <vincent.ri...@imgtec.com> --- configure |1 + 1 files changed, 1 insertions(+), 0 deletions(-) diff --git a/configure b/configure index ff5e132..3530327 100755 --- a/configure +++ b/configure @@ -4098,6 +4098,7 @@ elif enable

Re: [FFmpeg-devel] [PATCH] mips: disable all features in configure if no cpu is matched

2015-10-15 Thread Vicente Olivert Riera
Dear Nedeljko Babic, On 10/15/2015 01:05 PM, Nedeljko Babic wrote: > Hello, > >> Signed-off-by: Vicente Olivert Riera <vincent.ri...@imgtec.com> >> --- >> configure |9 + >> 1 files changed, 9 insertions(+), 0 deletions(-) >> >> dif

[FFmpeg-devel] [PATCH] mips: disable all features in configure if no cpu is matched

2015-10-14 Thread Vicente Olivert Riera
Signed-off-by: Vicente Olivert Riera <vincent.ri...@imgtec.com> --- configure |9 + 1 files changed, 9 insertions(+), 0 deletions(-) diff --git a/configure b/configure index 7e55e92..cd27ad7 100755 --- a/configure +++ b/configure @@ -4130,6 +4130,15 @@ elif enable