[FFmpeg-cvslog] ivi_dsp: remove semicolons after function definitions

Mans Rullgard git
Fri Feb 11 03:52:13 CET 2011


ffmpeg | branch: master | Mans Rullgard <mans at mansr.com> | Thu Feb 10 12:04:52 2011 +0000| [7e1e8bf335cc7d6a5fa0d24b4769f221dab2c4a2] | committer: Michael Niedermayer

ivi_dsp: remove semicolons after function definitions

Signed-off-by: Mans Rullgard <mans at mansr.com>
(cherry picked from commit dbb09ec23f16cb5e4ec3d4e0911dae0beb95869b)

> http://git.videolan.org/gitweb.cgi/ffmpeg.git/?a=commit;h=7e1e8bf335cc7d6a5fa0d24b4769f221dab2c4a2
---

 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 ccaffd4..913fdc3 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)




More information about the ffmpeg-cvslog mailing list