[FFmpeg-cvslog] gif: remove outdated comments.

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


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

gif: remove outdated comments.

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

 libavcodec/gif.c  |   14 ++++----------
 libavformat/gif.c |   18 ------------------
 2 files changed, 4 insertions(+), 28 deletions(-)

diff --git a/libavcodec/gif.c b/libavcodec/gif.c
index 6829930..f30297b 100644
--- a/libavcodec/gif.c
+++ b/libavcodec/gif.c
@@ -1,5 +1,4 @@
 /*
- * GIF encoder.
  * Copyright (c) 2000 Fabrice Bellard
  * Copyright (c) 2002 Francois Revol
  * Copyright (c) 2006 Baptiste Coudurier
@@ -23,15 +22,10 @@
  * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
  */
 
-/*
- * Features and limitations:
- * - uses only a global standard palette
- * - tested with IE 5.0, Opera for BeOS, NetPositive (BeOS), and Mozilla (BeOS).
- *
- * Reference documents:
- * http://www.goice.co.jp/member/mo/formats/gif.html
- * http://astronomy.swin.edu.au/pbourke/dataformats/gif/
- * http://www.dcs.ed.ac.uk/home/mxr/gfx/2d/GIF89a.txt
+/**
+ * @file
+ * GIF encoder
+ * @see http://www.w3.org/Graphics/GIF/spec-gif89a.txt
  */
 
 #include "avcodec.h"
diff --git a/libavformat/gif.c b/libavformat/gif.c
index 4a1d3ef..5522ace 100644
--- a/libavformat/gif.c
+++ b/libavformat/gif.c
@@ -21,24 +21,6 @@
  * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
  */
 
-/*
- * Features and limitations:
- * - currently no compression is performed,
- *   in fact the size of the data is 9/8 the size of the image in 8bpp
- * - uses only a global standard palette
- * - tested with IE 5.0, Opera for BeOS, NetPositive (BeOS), and Mozilla (BeOS).
- *
- * Reference documents:
- * http://www.goice.co.jp/member/mo/formats/gif.html
- * http://astronomy.swin.edu.au/pbourke/dataformats/gif/
- * http://www.dcs.ed.ac.uk/home/mxr/gfx/2d/GIF89a.txt
- *
- * this url claims to have an LZW algorithm not covered by Unisys patent:
- * http://www.msg.net/utility/whirlgif/gifencod.html
- * could help reduce the size of the files _a lot_...
- * some sites mentions an RLE type compression also.
- */
-
 #include "avformat.h"
 #include "libavutil/avassert.h"
 #include "libavutil/imgutils.h"



More information about the ffmpeg-cvslog mailing list