summaryrefslogtreecommitdiff
path: root/libavcodec/h263.c
diff options
context:
space:
mode:
authorMichael Niedermayer <michaelni@gmx.at>2002-05-05 01:37:07 +0000
committerMichael Niedermayer <michaelni@gmx.at>2002-05-05 01:37:07 +0000
commit3d1d9b2c37a839dbabcce07a8bb42cda2f4fc494 (patch)
tree5a22c5dbd350146531505d2aeaddc58e9c0b3bf7 /libavcodec/h263.c
parent32cd20de42d5b8adfde57039d2b29df47b31981c (diff)
shorter user data with formating by juanjo
Originally committed as revision 441 to svn://svn.ffmpeg.org/ffmpeg/trunk
Diffstat (limited to 'libavcodec/h263.c')
-rw-r--r--libavcodec/h263.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/libavcodec/h263.c b/libavcodec/h263.c
index d2926b02ad..b445fd9b21 100644
--- a/libavcodec/h263.c
+++ b/libavcodec/h263.c
@@ -1196,7 +1196,7 @@ static void mpeg4_encode_vol_header(MpegEncContext * s)
mpeg4_stuffing(&s->pb);
put_bits(&s->pb, 16, 0);
put_bits(&s->pb, 16, 0x1B2); /* user_data */
- sprintf(buf, "FFmpeg v%s / libavcodec build: %s", FFMPEG_VERSION, LIBAVCODEC_BUILD_STR);
+ sprintf(buf, "FFmpeg%sb%s", FFMPEG_VERSION, LIBAVCODEC_BUILD_STR);
put_string(&s->pb, buf);
s->no_rounding = 0;