Commit 66160bdb authored by Clément Bœsch's avatar Clément Bœsch

cleanup: remove two extraneous semicolons.

parent ee731c1a
......@@ -245,7 +245,7 @@ static av_cold int X264_close(AVCodecContext *avctx)
"bad value for '%s': '%s'\n", opt, param); \
return -1; \
} \
} while (0);
} while (0)
static int convert_pix_fmt(enum PixelFormat pix_fmt)
{
......
......@@ -277,7 +277,7 @@ static int decode_picture_header(AVCodecContext *avctx, const uint8_t *buf, cons
val = q; \
SKIP_BITS(re, gb, q+1); \
} \
} while (0); \
} while (0)
#define TOSIGNED(x) (((x) >> 1) ^ (-((x) & 1)))
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment