Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/FFmpeg/FFmpeg.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMichael Niedermayer <michaelni@gmx.at>2002-11-10 14:24:27 +0300
committerMichael Niedermayer <michaelni@gmx.at>2002-11-10 14:24:27 +0300
commitf11d3f23105f8c7e195990ab2c1728d3dd2f206f (patch)
tree175627fac5b1cd8346702008b9917b790ff4f9ff
parent347ae22ecf3b10b0dd5293bfc3764873fe42b03d (diff)
avoid duplicate ";" warnings (based upon a patch by mru at users dot sourceforge dot net (Måns Rullgård))
Originally committed as revision 1183 to svn://svn.ffmpeg.org/ffmpeg/trunk
-rw-r--r--libavcodec/avcodec.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/libavcodec/avcodec.h b/libavcodec/avcodec.h
index 59c42a3942..e2a9a83410 100644
--- a/libavcodec/avcodec.h
+++ b/libavcodec/avcodec.h
@@ -831,7 +831,7 @@ extern AVCodec mace6_decoder;
/* pcm codecs */
#define PCM_CODEC(id, name) \
extern AVCodec name ## _decoder; \
-extern AVCodec name ## _encoder;
+extern AVCodec name ## _encoder
PCM_CODEC(CODEC_ID_PCM_S16LE, pcm_s16le);
PCM_CODEC(CODEC_ID_PCM_S16BE, pcm_s16be);