diff options
author | Mans Rullgard <mans@mansr.com> | 2011-12-11 17:07:04 +0000 |
---|---|---|
committer | Mans Rullgard <mans@mansr.com> | 2011-12-11 17:23:24 +0000 |
commit | 373211d828f351d86908d47828444f620bfd176d (patch) | |
tree | 57774c3dcd9d97abf4eca90b2d00615b6b92cfd6 /libavcodec/h264pred_template.c | |
parent | 0ebd4083e114a3c88c0e74852c10aeaea826d24d (diff) | |
download | ffmpeg-373211d828f351d86908d47828444f620bfd176d.tar.gz |
Remove extraneous semicolons
These semicolons cause invalid empty top-level declarations.
Signed-off-by: Mans Rullgard <mans@mansr.com>
Diffstat (limited to 'libavcodec/h264pred_template.c')
-rw-r--r-- | libavcodec/h264pred_template.c | 12 |
1 files changed, 6 insertions, 6 deletions
diff --git a/libavcodec/h264pred_template.c b/libavcodec/h264pred_template.c index 318b56196d..19100b69a9 100644 --- a/libavcodec/h264pred_template.c +++ b/libavcodec/h264pred_template.c @@ -388,9 +388,9 @@ static void FUNCC(pred16x16_##n##_dc)(uint8_t *_src, int stride){\ PREDICT_16x16_DC(PIXEL_SPLAT_X4(v));\ } -PRED16x16_X(127, (1<<(BIT_DEPTH-1))-1); -PRED16x16_X(128, (1<<(BIT_DEPTH-1))+0); -PRED16x16_X(129, (1<<(BIT_DEPTH-1))+1); +PRED16x16_X(127, (1<<(BIT_DEPTH-1))-1) +PRED16x16_X(128, (1<<(BIT_DEPTH-1))+0) +PRED16x16_X(129, (1<<(BIT_DEPTH-1))+1) static inline void FUNCC(pred16x16_plane_compat)(uint8_t *_src, int _stride, const int svq3, const int rv40){ int i, j, k; @@ -502,9 +502,9 @@ static void FUNCC(pred8x8_##n##_dc)(uint8_t *_src, int stride){\ }\ } -PRED8x8_X(127, (1<<(BIT_DEPTH-1))-1); -PRED8x8_X(128, (1<<(BIT_DEPTH-1))+0); -PRED8x8_X(129, (1<<(BIT_DEPTH-1))+1); +PRED8x8_X(127, (1<<(BIT_DEPTH-1))-1) +PRED8x8_X(128, (1<<(BIT_DEPTH-1))+0) +PRED8x8_X(129, (1<<(BIT_DEPTH-1))+1) static void FUNCC(pred8x16_128_dc)(uint8_t *_src, int stride){ FUNCC(pred8x8_128_dc)(_src, stride); |