[FFmpeg-cvslog] r13457 - trunk/libavformat/swfenc.c
bcoudurier
subversion
Tue May 27 04:57:49 CEST 2008
Author: bcoudurier
Date: Tue May 27 04:57:48 2008
New Revision: 13457
Log:
simplify
Modified:
trunk/libavformat/swfenc.c
Modified: trunk/libavformat/swfenc.c
==============================================================================
--- trunk/libavformat/swfenc.c (original)
+++ trunk/libavformat/swfenc.c Tue May 27 04:57:48 2008
@@ -373,11 +373,7 @@ static int swf_write_video(AVFormatConte
put_le16(pb, VIDEO_ID);
put_swf_matrix(pb, 1 << FRAC_BITS, 0, 0, 1 << FRAC_BITS, 0, 0);
put_le16(pb, swf->video_frame_number);
- put_byte(pb, 'v');
- put_byte(pb, 'i');
- put_byte(pb, 'd');
- put_byte(pb, 'e');
- put_byte(pb, 'o');
+ put_tag(pb, "video");
put_byte(pb, 0x00);
put_swf_end_tag(s);
} else {
More information about the ffmpeg-cvslog
mailing list