You've already forked FFmpeg
mirror of
https://github.com/FFmpeg/FFmpeg.git
synced 2025-08-10 06:10:52 +02:00
* clean compiler warning
Originally committed as revision 733 to svn://svn.ffmpeg.org/ffmpeg/trunk
This commit is contained in:
@@ -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;
|
||||
}
|
||||
|
Reference in New Issue
Block a user