summaryrefslogtreecommitdiffstats
path: root/apps
diff options
context:
space:
mode:
authorRafaël Carré <rafael.carre@gmail.com>2011-03-28 21:44:36 +0000
committerRafaël Carré <rafael.carre@gmail.com>2011-03-28 21:44:36 +0000
commit8c3fc23ae6d26b657724f5998dd4f467a39b0cc9 (patch)
treef302a0094d9cae550a0882d00d0f7579e400e61d /apps
parentcde3c9a08ebce0de71a7b0b0f9a0148cae1ea16f (diff)
downloadrockbox-8c3fc23ae6d26b657724f5998dd4f467a39b0cc9.tar.gz
rockbox-8c3fc23ae6d26b657724f5998dd4f467a39b0cc9.zip
remove set but unused variable
git-svn-id: svn://svn.rockbox.org/rockbox/trunk@29659 a1c6a512-1295-4272-9138-f99709370657
Diffstat (limited to 'apps')
-rw-r--r--apps/recorder/resize.c3
1 files changed, 1 insertions, 2 deletions
diff --git a/apps/recorder/resize.c b/apps/recorder/resize.c
index 0f227f8b09..b570116179 100644
--- a/apps/recorder/resize.c
+++ b/apps/recorder/resize.c
@@ -580,7 +580,7 @@ static bool scale_h_linear(void *out_line_ptr, struct scaler_context *ctx,
static inline bool scale_v_linear(struct rowset *rset,
struct scaler_context *ctx)
{
- uint32_t mul, iy, iye;
+ uint32_t iy, iye;
int32_t oy;
#if defined(CPU_SH) || defined (TEST_SH_MATH)
const uint32_t v_i_val = ctx->src->height - 1,
@@ -604,7 +604,6 @@ static inline bool scale_v_linear(struct rowset *rset,
*rowinc_px, *rowval_px, *rowtmp_px;
SDEBUGF("scale_v_linear\n");
- mul = 0;
iy = 0;
iye = v_o_val;
/* get first scaled row in rowtmp */