summaryrefslogtreecommitdiff
path: root/libavcodec/h264.c
diff options
context:
space:
mode:
authorMans Rullgard <mans@mansr.com>2011-12-11 17:07:04 +0000
committerMans Rullgard <mans@mansr.com>2011-12-11 17:23:24 +0000
commit373211d828f351d86908d47828444f620bfd176d (patch)
tree57774c3dcd9d97abf4eca90b2d00615b6b92cfd6 /libavcodec/h264.c
parent0ebd4083e114a3c88c0e74852c10aeaea826d24d (diff)
Remove extraneous semicolons
These semicolons cause invalid empty top-level declarations. Signed-off-by: Mans Rullgard <mans@mansr.com>
Diffstat (limited to 'libavcodec/h264.c')
-rw-r--r--libavcodec/h264.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/libavcodec/h264.c b/libavcodec/h264.c
index 285aae81e5..631ad96e6b 100644
--- a/libavcodec/h264.c
+++ b/libavcodec/h264.c
@@ -2200,8 +2200,8 @@ static av_always_inline void hl_decode_mb_444_internal(H264Context *h, int simpl
static void hl_decode_mb_simple_ ## bits(H264Context *h){ \
hl_decode_mb_internal(h, 1, sh); \
}
-hl_decode_mb_simple(0, 8);
-hl_decode_mb_simple(1, 16);
+hl_decode_mb_simple(0, 8)
+hl_decode_mb_simple(1, 16)
/**
* Process a macroblock; this handles edge cases, such as interlacing.