mirror of
https://github.com/nyanmisaka/ffmpeg-rockchip.git
synced 2026-01-23 23:21:06 +01:00
avformat/gif: simplify signature writing
This commit is contained in:
parent
fe300b2ab5
commit
6a20876b62
1 changed files with 2 additions and 2 deletions
|
|
@ -27,6 +27,7 @@
|
|||
#include "libavutil/imgutils.h"
|
||||
#include "libavutil/log.h"
|
||||
#include "libavutil/opt.h"
|
||||
#include "libavcodec/gif.h"
|
||||
|
||||
/* XXX: random value that shouldn't be taken into effect if there is no
|
||||
* transparent color in the palette (the transparency bit will be set to 0) */
|
||||
|
|
@ -63,8 +64,7 @@ static int gif_image_write_header(AVIOContext *pb, AVStream *st,
|
|||
aspect = 0;
|
||||
}
|
||||
|
||||
avio_write(pb, "GIF", 3);
|
||||
avio_write(pb, "89a", 3);
|
||||
avio_write(pb, gif89a_sig, sizeof(gif89a_sig));
|
||||
avio_wl16(pb, st->codecpar->width);
|
||||
avio_wl16(pb, st->codecpar->height);
|
||||
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue