diff options
author | Andreas Rheinhardt <andreas.rheinhardt@gmail.com> | 2021-03-01 06:10:44 +0100 |
---|---|---|
committer | Andreas Rheinhardt <andreas.rheinhardt@gmail.com> | 2021-03-01 06:10:44 +0100 |
commit | 0e645b98c66aafe32517b946a6484eb5579172d4 (patch) | |
tree | 228bd4cbd4d1584f5bc26b8b4a85f346135aa276 /libavcodec/mobiclip.c | |
parent | 590f491b0aefe770876c09c09433c24fc21a1565 (diff) | |
download | ffmpeg-0e645b98c66aafe32517b946a6484eb5579172d4.tar.gz |
Remove double ';'
Signed-off-by: Andreas Rheinhardt <andreas.rheinhardt@gmail.com>
Diffstat (limited to 'libavcodec/mobiclip.c')
-rw-r--r-- | libavcodec/mobiclip.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/libavcodec/mobiclip.c b/libavcodec/mobiclip.c index a15091426a..e5c6617325 100644 --- a/libavcodec/mobiclip.c +++ b/libavcodec/mobiclip.c @@ -544,7 +544,7 @@ static uint8_t half(int a, int b) static uint8_t half3(int a, int b, int c) { - return ((a + b + b + c) * 2 / 4 + 1) / 2;; + return ((a + b + b + c) * 2 / 4 + 1) / 2; } static uint8_t pick_above(BlockXY bxy) |