Commit be898457 authored by Diego Biurrun's avatar Diego Biurrun

jfdct: Replace sized int_fast integer types with plain int/unsigned.

int/unsigned is the natural memory access type for CPUs, using sized types
for temporary variables, counters and similar just increases code size and
can possibly cause a slowdown.
parent 046f081b
...@@ -145,9 +145,9 @@ ...@@ -145,9 +145,9 @@
#define MULTIPLY(var,const) ((DCTELEM) DESCALE((var) * (const), CONST_BITS)) #define MULTIPLY(var,const) ((DCTELEM) DESCALE((var) * (const), CONST_BITS))
static av_always_inline void row_fdct(DCTELEM * data){ static av_always_inline void row_fdct(DCTELEM * data){
int_fast16_t tmp0, tmp1, tmp2, tmp3, tmp4, tmp5, tmp6, tmp7; int tmp0, tmp1, tmp2, tmp3, tmp4, tmp5, tmp6, tmp7;
int_fast16_t tmp10, tmp11, tmp12, tmp13; int tmp10, tmp11, tmp12, tmp13;
int_fast16_t z1, z2, z3, z4, z5, z11, z13; int z1, z2, z3, z4, z5, z11, z13;
DCTELEM *dataptr; DCTELEM *dataptr;
int ctr; int ctr;
...@@ -209,9 +209,9 @@ static av_always_inline void row_fdct(DCTELEM * data){ ...@@ -209,9 +209,9 @@ static av_always_inline void row_fdct(DCTELEM * data){
GLOBAL(void) GLOBAL(void)
fdct_ifast (DCTELEM * data) fdct_ifast (DCTELEM * data)
{ {
int_fast16_t tmp0, tmp1, tmp2, tmp3, tmp4, tmp5, tmp6, tmp7; int tmp0, tmp1, tmp2, tmp3, tmp4, tmp5, tmp6, tmp7;
int_fast16_t tmp10, tmp11, tmp12, tmp13; int tmp10, tmp11, tmp12, tmp13;
int_fast16_t z1, z2, z3, z4, z5, z11, z13; int z1, z2, z3, z4, z5, z11, z13;
DCTELEM *dataptr; DCTELEM *dataptr;
int ctr; int ctr;
...@@ -275,9 +275,9 @@ fdct_ifast (DCTELEM * data) ...@@ -275,9 +275,9 @@ fdct_ifast (DCTELEM * data)
GLOBAL(void) GLOBAL(void)
fdct_ifast248 (DCTELEM * data) fdct_ifast248 (DCTELEM * data)
{ {
int_fast16_t tmp0, tmp1, tmp2, tmp3, tmp4, tmp5, tmp6, tmp7; int tmp0, tmp1, tmp2, tmp3, tmp4, tmp5, tmp6, tmp7;
int_fast16_t tmp10, tmp11, tmp12, tmp13; int tmp10, tmp11, tmp12, tmp13;
int_fast16_t z1; int z1;
DCTELEM *dataptr; DCTELEM *dataptr;
int ctr; int ctr;
......
...@@ -181,9 +181,9 @@ ...@@ -181,9 +181,9 @@
static av_always_inline void row_fdct(DCTELEM * data){ static av_always_inline void row_fdct(DCTELEM * data){
int_fast32_t tmp0, tmp1, tmp2, tmp3, tmp4, tmp5, tmp6, tmp7; int tmp0, tmp1, tmp2, tmp3, tmp4, tmp5, tmp6, tmp7;
int_fast32_t tmp10, tmp11, tmp12, tmp13; int tmp10, tmp11, tmp12, tmp13;
int_fast32_t z1, z2, z3, z4, z5; int z1, z2, z3, z4, z5;
DCTELEM *dataptr; DCTELEM *dataptr;
int ctr; int ctr;
...@@ -259,9 +259,9 @@ static av_always_inline void row_fdct(DCTELEM * data){ ...@@ -259,9 +259,9 @@ static av_always_inline void row_fdct(DCTELEM * data){
GLOBAL(void) GLOBAL(void)
ff_jpeg_fdct_islow (DCTELEM * data) ff_jpeg_fdct_islow (DCTELEM * data)
{ {
int_fast32_t tmp0, tmp1, tmp2, tmp3, tmp4, tmp5, tmp6, tmp7; int tmp0, tmp1, tmp2, tmp3, tmp4, tmp5, tmp6, tmp7;
int_fast32_t tmp10, tmp11, tmp12, tmp13; int tmp10, tmp11, tmp12, tmp13;
int_fast32_t z1, z2, z3, z4, z5; int z1, z2, z3, z4, z5;
DCTELEM *dataptr; DCTELEM *dataptr;
int ctr; int ctr;
...@@ -345,9 +345,9 @@ ff_jpeg_fdct_islow (DCTELEM * data) ...@@ -345,9 +345,9 @@ ff_jpeg_fdct_islow (DCTELEM * data)
GLOBAL(void) GLOBAL(void)
ff_fdct248_islow (DCTELEM * data) ff_fdct248_islow (DCTELEM * data)
{ {
int_fast32_t tmp0, tmp1, tmp2, tmp3, tmp4, tmp5, tmp6, tmp7; int tmp0, tmp1, tmp2, tmp3, tmp4, tmp5, tmp6, tmp7;
int_fast32_t tmp10, tmp11, tmp12, tmp13; int tmp10, tmp11, tmp12, tmp13;
int_fast32_t z1; int z1;
DCTELEM *dataptr; DCTELEM *dataptr;
int ctr; int ctr;
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment