[FFmpeg-cvslog] avdevice/caca: small trivial macros adjustments
Clément Bœsch
git at videolan.org
Sat Sep 12 18:27:30 CEST 2015
ffmpeg | branch: master | Clément Bœsch <u at pkh.me> | Fri Sep 11 21:06:15 2015 +0200| [2c364ef82dcc196b1b016cff16887280e8a64fa9] | committer: Clément Bœsch
avdevice/caca: small trivial macros adjustments
> http://git.videolan.org/gitweb.cgi/ffmpeg.git/?a=commit;h=2c364ef82dcc196b1b016cff16887280e8a64fa9
---
libavdevice/caca.c | 18 ++++++++++--------
1 file changed, 10 insertions(+), 8 deletions(-)
diff --git a/libavdevice/caca.c b/libavdevice/caca.c
index 574b7f3..14775d2 100644
--- a/libavdevice/caca.c
+++ b/libavdevice/caca.c
@@ -73,7 +73,7 @@ static void list_drivers(CACAContext *c)
}
#define DEFINE_LIST_DITHER(thing, thing_str) \
-static void list_dither_## thing(CACAContext *c) \
+static void list_dither_## thing(CACAContext *c) \
{ \
const char *const *thing = caca_get_dither_## thing ##_list(c->dither); \
int i; \
@@ -150,13 +150,15 @@ static int caca_write_header(AVFormatContext *s)
goto fail;
}
-#define CHECK_DITHER_OPT(opt) \
- if (caca_set_dither_##opt(c->dither, c->opt) < 0) { \
- ret = AVERROR(errno); \
- av_log(s, AV_LOG_ERROR, "Failed to set value '%s' for option '%s'\n", \
- c->opt, #opt); \
- goto fail; \
- }
+#define CHECK_DITHER_OPT(opt) do { \
+ if (caca_set_dither_##opt(c->dither, c->opt) < 0) { \
+ ret = AVERROR(errno); \
+ av_log(s, AV_LOG_ERROR, "Failed to set value '%s' for option '%s'\n", \
+ c->opt, #opt); \
+ goto fail; \
+ } \
+} while (0)
+
CHECK_DITHER_OPT(algorithm);
CHECK_DITHER_OPT(antialias);
CHECK_DITHER_OPT(charset);
More information about the ffmpeg-cvslog
mailing list