diff options
author | Paul B Mahol <onemda@gmail.com> | 2013-01-25 16:37:03 +0000 |
---|---|---|
committer | Paul B Mahol <onemda@gmail.com> | 2013-01-26 09:28:57 +0000 |
commit | 254e11cc019d3f7cb7b86de08c86cc77545ca379 (patch) | |
tree | fe00c289a1382f7bb8447938f3ab2e168fb752ae /libavformat | |
parent | e4033d89f1727d7079545bcb8e5380880e87e2bf (diff) | |
download | ffmpeg-254e11cc019d3f7cb7b86de08c86cc77545ca379.tar.gz |
lavf/gifdec: fix typo
Signed-off-by: Paul B Mahol <onemda@gmail.com>
Diffstat (limited to 'libavformat')
-rw-r--r-- | libavformat/gifdec.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/libavformat/gifdec.c b/libavformat/gifdec.c index d43a537682..6cf36c1205 100644 --- a/libavformat/gifdec.c +++ b/libavformat/gifdec.c @@ -194,7 +194,7 @@ parse_keyframe: if ((ret = avio_skip(pb, 2)) < 0) return ret; - /* glogal color table presence */ + /* global color table presence */ if (packed_fields & 0x80) { ct_size = 3 * (1 << ((packed_fields & 0x07) + 1)); |