[FFmpeg-cvslog] gif: reindent after previous commits.

Clément Bœsch git at videolan.org
Thu Apr 18 00:26:57 CEST 2013


ffmpeg | branch: master | Clément Bœsch <ubitux at gmail.com> | Thu Apr 18 00:12:30 2013 +0200| [7b972d82b673c55ba0593ec1433af97f491154c4] | committer: Clément Bœsch

gif: reindent after previous commits.

> http://git.videolan.org/gitweb.cgi/ffmpeg.git/?a=commit;h=7b972d82b673c55ba0593ec1433af97f491154c4
---

 libavcodec/gif.c  |    2 +-
 libavformat/gif.c |    7 +++----
 2 files changed, 4 insertions(+), 5 deletions(-)

diff --git a/libavcodec/gif.c b/libavcodec/gif.c
index 52cf1c9..f373819 100644
--- a/libavcodec/gif.c
+++ b/libavcodec/gif.c
@@ -144,7 +144,7 @@ static int gif_image_write_image(AVCodecContext *avctx,
     bytestream_put_le16(bytestream, height);
 
     if (!palette) {
-    bytestream_put_byte(bytestream, 0x00); /* flags */
+        bytestream_put_byte(bytestream, 0x00); /* flags */
     } else {
         unsigned i;
         bytestream_put_byte(bytestream, 1<<7 | 0x7); /* flags */
diff --git a/libavformat/gif.c b/libavformat/gif.c
index 55f6a58..7be2d1c 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);



More information about the ffmpeg-cvslog mailing list