summaryrefslogtreecommitdiff
path: root/libavformat/gif.c
diff options
context:
space:
mode:
authorClément Bœsch <ubitux@gmail.com>2013-04-18 00:43:18 +0200
committerClément Bœsch <ubitux@gmail.com>2013-04-18 00:43:38 +0200
commit91a5b4d480a0b3271ae147c5cb130c8b56233f1f (patch)
tree5440fc21e6aaf59423e6219d05e04d86ad8892c6 /libavformat/gif.c
parent8694e87127a39a475e35f3344550b049bd4da86a (diff)
downloadffmpeg-91a5b4d480a0b3271ae147c5cb130c8b56233f1f.tar.gz
gif: remove outdated comments.
Diffstat (limited to 'libavformat/gif.c')
-rw-r--r--libavformat/gif.c18
1 files changed, 0 insertions, 18 deletions
diff --git a/libavformat/gif.c b/libavformat/gif.c
index 4a1d3ef298..5522ace8fb 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"