cleanup: remove two extraneous semicolons.

pull/2/head
Clément Bœsch 13 years ago
parent ee731c1ab0
commit 66160bdb01
  1. 2
      libavcodec/libx264.c
  2. 2
      libavcodec/proresdec2.c

@ -245,7 +245,7 @@ static av_cold int X264_close(AVCodecContext *avctx)
"bad value for '%s': '%s'\n", opt, param); \ "bad value for '%s': '%s'\n", opt, param); \
return -1; \ return -1; \
} \ } \
} while (0); } while (0)
static int convert_pix_fmt(enum PixelFormat pix_fmt) 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; \ val = q; \
SKIP_BITS(re, gb, q+1); \ SKIP_BITS(re, gb, q+1); \
} \ } \
} while (0); \ } while (0)
#define TOSIGNED(x) (((x) >> 1) ^ (-((x) & 1))) #define TOSIGNED(x) (((x) >> 1) ^ (-((x) & 1)))

Loading…
Cancel
Save