summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorZdenek Kabelac <kabi@informatics.muni.cz>2002-07-10 14:34:06 +0000
committerZdenek Kabelac <kabi@informatics.muni.cz>2002-07-10 14:34:06 +0000
commitf197d19a21d3ae185f55d62efba1b272459e835b (patch)
tree61bc9367b0049ece469e75e8c4ecf613356c8a29
parent29482cb4ca394667efc3372eb7ee6e15eb240e87 (diff)
* clean compiler warning
Originally committed as revision 733 to svn://svn.ffmpeg.org/ffmpeg/trunk
-rw-r--r--libavcodec/mjpeg.c8
1 files changed, 4 insertions, 4 deletions
diff --git a/libavcodec/mjpeg.c b/libavcodec/mjpeg.c
index ccaf37e38b..7068b13078 100644
--- a/libavcodec/mjpeg.c
+++ b/libavcodec/mjpeg.c
@@ -372,10 +372,10 @@ static void jpeg_put_comments(MpegEncContext *s)
flush_put_bits(p);
ptr = pbBufPtr(p);
put_bits(p, 16, 0); /* patched later */
-#define VERSION "FFmpeg" LIBAVCODEC_VERSION "b" LIBAVCODEC_BUILD_STR
- put_string(p, VERSION);
- size = strlen(VERSION)+3;
-#undef VERSION
+#define MJPEG_VERSION "FFmpeg" LIBAVCODEC_VERSION "b" LIBAVCODEC_BUILD_STR
+ put_string(p, MJPEG_VERSION);
+ size = strlen(MJPEG_VERSION)+3;
+#undef MJPEG_VERSION
ptr[0] = size >> 8;
ptr[1] = size;
}