Browse Source

simplify

Originally committed as revision 13458 to svn://svn.ffmpeg.org/ffmpeg/trunk
tags/v0.5
Baptiste Coudurier 17 years ago
parent
commit
6ef445fede
1 changed files with 1 additions and 4 deletions
  1. +1
    -4
      libavformat/swfenc.c

+ 1
- 4
libavformat/swfenc.c View File

@@ -410,10 +410,7 @@ static int swf_write_video(AVFormatContext *s,
put_le16(pb, BITMAP_ID); /* ID of the image */

/* a dummy jpeg header seems to be required */
put_byte(pb, 0xff);
put_byte(pb, 0xd8);
put_byte(pb, 0xff);
put_byte(pb, 0xd9);
put_be32(pb, 0xffd8ffd9);
/* write the jpeg image */
put_buffer(pb, buf, size);



Loading…
Cancel
Save