Commit cd52b8df authored by michaelni's avatar michaelni

shorter user data with formating by juanjo


git-svn-id: file:///var/local/repositories/ffmpeg/trunk@441 9553f0bf-9b14-0410-a0b8-cfaf0461ba5b
parent e8d8b24f
...@@ -1196,7 +1196,7 @@ static void mpeg4_encode_vol_header(MpegEncContext * s) ...@@ -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;
......
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