1
0
mirror of https://github.com/FFmpeg/FFmpeg.git synced 2025-01-24 13:56:33 +02:00

shorter user data with formating by juanjo

Originally committed as revision 441 to svn://svn.ffmpeg.org/ffmpeg/trunk
This commit is contained in:
Michael Niedermayer 2002-05-05 01:37:07 +00:00
parent 32cd20de42
commit 3d1d9b2c37

View File

@ -1196,7 +1196,7 @@ static void mpeg4_encode_vol_header(MpegEncContext * s)
mpeg4_stuffing(&s->pb); mpeg4_stuffing(&s->pb);
put_bits(&s->pb, 16, 0); put_bits(&s->pb, 16, 0);
put_bits(&s->pb, 16, 0x1B2); /* user_data */ 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); put_string(&s->pb, buf);
s->no_rounding = 0; s->no_rounding = 0;