diff options
author | Mans Rullgard <mans@mansr.com> | 2011-02-10 12:04:52 +0000 |
---|---|---|
committer | Mans Rullgard <mans@mansr.com> | 2011-02-10 14:17:24 +0000 |
commit | dbb09ec23f16cb5e4ec3d4e0911dae0beb95869b (patch) | |
tree | 0dd1caf742421ba016d4f838cfee289452cd8550 /libavcodec | |
parent | 628b16f45f79aa5eb7514f11026d85e8aa34387f (diff) | |
download | ffmpeg-dbb09ec23f16cb5e4ec3d4e0911dae0beb95869b.tar.gz |
ivi_dsp: remove semicolons after function definitions
Signed-off-by: Mans Rullgard <mans@mansr.com>
Diffstat (limited to 'libavcodec')
-rw-r--r-- | libavcodec/ivi_dsp.c | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/libavcodec/ivi_dsp.c b/libavcodec/ivi_dsp.c index ccaffd45ce..913fdc31b2 100644 --- a/libavcodec/ivi_dsp.c +++ b/libavcodec/ivi_dsp.c @@ -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) |