diff options
author | Clément Bœsch <ubitux@gmail.com> | 2013-04-18 00:12:30 +0200 |
---|---|---|
committer | Clément Bœsch <ubitux@gmail.com> | 2013-04-18 00:24:25 +0200 |
commit | 7b972d82b673c55ba0593ec1433af97f491154c4 (patch) | |
tree | 31f9e9eeea6cc4a70c79cb155664f6e1521d1c01 /libavformat/gif.c | |
parent | e065e8a4ea5c7e1302ac6dc1f9025a24ef202784 (diff) | |
download | ffmpeg-7b972d82b673c55ba0593ec1433af97f491154c4.tar.gz |
gif: reindent after previous commits.
Diffstat (limited to 'libavformat/gif.c')
-rw-r--r-- | libavformat/gif.c | 7 |
1 files changed, 3 insertions, 4 deletions
diff --git a/libavformat/gif.c b/libavformat/gif.c index 55f6a581ac..7be2d1c35e 100644 --- a/libavformat/gif.c +++ b/libavformat/gif.c @@ -63,10 +63,9 @@ static int gif_image_write_header(AVIOContext *pb, int width, int height, avio_wl16(pb, height); if (palette) { - /* TODO: reindent */ - avio_w8(pb, 0xf7); /* flags: global clut, 256 entries */ - avio_w8(pb, 0x1f); /* background color index */ - avio_w8(pb, 0); /* aspect ratio */ + avio_w8(pb, 0xf7); /* flags: global clut, 256 entries */ + avio_w8(pb, 0x1f); /* background color index */ + avio_w8(pb, 0); /* aspect ratio */ for (i = 0; i < 256; i++) { v = palette[i]; avio_w8(pb, (v >> 16) & 0xff); |