diff h263.c @ 1118:8248e652d64e libavcodec

simplified
author al3x
date Sun, 09 Mar 2003 16:07:19 +0000
parents 1e39f273ecd6
children 77ccf7fe3bd0
line wrap: on
line diff
--- a/h263.c	Sat Mar 08 23:43:34 2003 +0000
+++ b/h263.c	Sun Mar 09 16:07:19 2003 +0000
@@ -1667,7 +1667,6 @@
 static void mpeg4_encode_vol_header(MpegEncContext * s, int vo_number, int vol_number)
 {
     int vo_ver_id;
-    char buf[255];
 
     if(s->max_b_frames || s->quarter_sample){
         vo_ver_id= 5;
@@ -1754,8 +1753,7 @@
     if(!(s->flags & CODEC_FLAG_BITEXACT)){
         put_bits(&s->pb, 16, 0);
         put_bits(&s->pb, 16, 0x1B2);	/* user_data */
-        sprintf(buf, "FFmpeg%sb%s", FFMPEG_VERSION, LIBAVCODEC_BUILD_STR);
-        put_string(&s->pb, buf);
+	put_string(&s->pb, LIBAVCODEC_IDENT);
         ff_mpeg4_stuffing(&s->pb);
     }
 }