summaryrefslogtreecommitdiff
path: root/libavcodec/adpcm.c
diff options
context:
space:
mode:
authorMans Rullgard <mans@mansr.com>2011-02-10 12:04:25 +0000
committerMans Rullgard <mans@mansr.com>2011-02-10 21:45:17 +0000
commit44adbebe1744c68d66d7f811c38270fdcc89665a (patch)
treef54d8c51945df57d392f1cd6a6b577103d440b46 /libavcodec/adpcm.c
parentdf211c3ab73b36208ac4511a9cd7feb817f551fa (diff)
Remove final semicolon from some macros
This avoids double semicolons after macro expansion. Signed-off-by: Mans Rullgard <mans@mansr.com>
Diffstat (limited to 'libavcodec/adpcm.c')
-rw-r--r--libavcodec/adpcm.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/libavcodec/adpcm.c b/libavcodec/adpcm.c
index fb5bdc7faa..826c588676 100644
--- a/libavcodec/adpcm.c
+++ b/libavcodec/adpcm.c
@@ -1719,7 +1719,7 @@ AVCodec ff_ ## name ## _encoder = { \
NULL, \
.sample_fmts = (const enum AVSampleFormat[]){AV_SAMPLE_FMT_S16,AV_SAMPLE_FMT_NONE}, \
.long_name = NULL_IF_CONFIG_SMALL(long_name_), \
-};
+}
#else
#define ADPCM_ENCODER(id,name,long_name_)
#endif
@@ -1736,13 +1736,13 @@ AVCodec ff_ ## name ## _decoder = { \
NULL, \
adpcm_decode_frame, \
.long_name = NULL_IF_CONFIG_SMALL(long_name_), \
-};
+}
#else
#define ADPCM_DECODER(id,name,long_name_)
#endif
#define ADPCM_CODEC(id,name,long_name_) \
- ADPCM_ENCODER(id,name,long_name_) ADPCM_DECODER(id,name,long_name_)
+ ADPCM_ENCODER(id,name,long_name_); ADPCM_DECODER(id,name,long_name_)
/* Note: Do not forget to add new entries to the Makefile as well. */
ADPCM_DECODER(CODEC_ID_ADPCM_4XM, adpcm_4xm, "ADPCM 4X Movie");