Commit 8692f301 authored by kabi's avatar kabi

* clean compiler warning


git-svn-id: file:///var/local/repositories/ffmpeg/trunk@733 9553f0bf-9b14-0410-a0b8-cfaf0461ba5b
parent 8e1bceaf
...@@ -372,10 +372,10 @@ static void jpeg_put_comments(MpegEncContext *s) ...@@ -372,10 +372,10 @@ static void jpeg_put_comments(MpegEncContext *s)
flush_put_bits(p); flush_put_bits(p);
ptr = pbBufPtr(p); ptr = pbBufPtr(p);
put_bits(p, 16, 0); /* patched later */ put_bits(p, 16, 0); /* patched later */
#define VERSION "FFmpeg" LIBAVCODEC_VERSION "b" LIBAVCODEC_BUILD_STR #define MJPEG_VERSION "FFmpeg" LIBAVCODEC_VERSION "b" LIBAVCODEC_BUILD_STR
put_string(p, VERSION); put_string(p, MJPEG_VERSION);
size = strlen(VERSION)+3; size = strlen(MJPEG_VERSION)+3;
#undef VERSION #undef MJPEG_VERSION
ptr[0] = size >> 8; ptr[0] = size >> 8;
ptr[1] = size; ptr[1] = size;
} }
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment