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/vc1dsp.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/vc1dsp.c')
-rw-r--r-- | libavcodec/vc1dsp.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/libavcodec/vc1dsp.c b/libavcodec/vc1dsp.c index 77725095c3..9bd107cdd9 100644 --- a/libavcodec/vc1dsp.c +++ b/libavcodec/vc1dsp.c @@ -550,8 +550,8 @@ static av_always_inline int vc1_mspel_ ## DIR ## _filter_16bits(const TYPE *src, return 0; /* should not occur */ \ } -VC1_MSPEL_FILTER_16B(ver, uint8_t); -VC1_MSPEL_FILTER_16B(hor, int16_t); +VC1_MSPEL_FILTER_16B(ver, uint8_t) +VC1_MSPEL_FILTER_16B(hor, int16_t) /** Filter used to interpolate fractional pel values |