Browse Source

ivi_dsp: remove semicolons after function definitions

Signed-off-by: Mans Rullgard <mans@mansr.com>
(cherry picked from commit dbb09ec23f)
tags/n0.8
Mans Rullgard Michael Niedermayer 14 years ago
parent
commit
7e1e8bf335
1 changed files with 4 additions and 4 deletions
  1. +4
    -4
      libavcodec/ivi_dsp.c

+ 4
- 4
libavcodec/ivi_dsp.c View File

@@ -461,7 +461,7 @@ void ff_ivi_mc_ ## size ##x## size ## suffix (int16_t *buf, const int16_t *ref_b
#define OP_PUT(a, b) (a) = (b)
#define OP_ADD(a, b) (a) += (b)

IVI_MC_TEMPLATE(8, _no_delta, OP_PUT);
IVI_MC_TEMPLATE(8, _delta, OP_ADD);
IVI_MC_TEMPLATE(4, _no_delta, OP_PUT);
IVI_MC_TEMPLATE(4, _delta, OP_ADD);
IVI_MC_TEMPLATE(8, _no_delta, OP_PUT)
IVI_MC_TEMPLATE(8, _delta, OP_ADD)
IVI_MC_TEMPLATE(4, _no_delta, OP_PUT)
IVI_MC_TEMPLATE(4, _delta, OP_ADD)

Loading…
Cancel
Save