diff options
author | Marcin Bukat <marcin.bukat@gmail.com> | 2012-11-02 13:03:58 +0100 |
---|---|---|
committer | Marcin Bukat <marcin.bukat@gmail.com> | 2012-11-13 18:13:10 +0100 |
commit | 0ceaff2b65c50b75ad8cc5b2d12e7b3f864092e5 (patch) | |
tree | 49d8d297cbba93902bc612a9aa4ded1b6e2d46e5 /apps/plugins/imageviewer/gif/gif.make | |
parent | b35f82c91ff050b4405b19a3e56e9d031bf940e2 (diff) | |
download | rockbox-0ceaff2b65c50b75ad8cc5b2d12e7b3f864092e5.tar.gz rockbox-0ceaff2b65c50b75ad8cc5b2d12e7b3f864092e5.zip |
imageviewer: gif viewer based on giflib-5.0.2
This adds ability to view gif images in rockbox.
Works both on color and gray/monochrome targets (greylib).
Aspect correction is supported as well.
Limitations:
- animated gifs are restricted to 32 frames
- animated gifs loop always (loopcount is ignored)
- plain text extension is not supported
- animated gifs with interframe delay = 0 are treated as still
images (web browsers usually treat delay 0 as 100ms to prevent
exhaustive CPU load by such images)
Change-Id: I61501f801ddcd403410e38d83e6bddc9883e7ede
Diffstat (limited to 'apps/plugins/imageviewer/gif/gif.make')
-rw-r--r-- | apps/plugins/imageviewer/gif/gif.make | 30 |
1 files changed, 30 insertions, 0 deletions
diff --git a/apps/plugins/imageviewer/gif/gif.make b/apps/plugins/imageviewer/gif/gif.make new file mode 100644 index 0000000000..8260524ffe --- /dev/null +++ b/apps/plugins/imageviewer/gif/gif.make | |||
@@ -0,0 +1,30 @@ | |||
1 | # __________ __ ___. | ||
2 | # Open \______ \ ____ ____ | | _\_ |__ _______ ___ | ||
3 | # Source | _// _ \_/ ___\| |/ /| __ \ / _ \ \/ / | ||
4 | # Jukebox | | ( <_> ) \___| < | \_\ ( <_> > < < | ||
5 | # Firmware |____|_ /\____/ \___ >__|_ \|___ /\____/__/\_ \ | ||
6 | # \/ \/ \/ \/ \/ | ||
7 | # $Id$ | ||
8 | # | ||
9 | |||
10 | GIFSRCDIR := $(IMGVSRCDIR)/gif | ||
11 | GIFBUILDDIR := $(IMGVBUILDDIR)/gif | ||
12 | |||
13 | GIF_SRC := $(call preprocess, $(GIFSRCDIR)/SOURCES) | ||
14 | GIF_OBJ := $(call c2obj, $(GIF_SRC)) | ||
15 | |||
16 | OTHER_SRC += $(GIF_SRC) | ||
17 | |||
18 | ROCKS += $(GIFBUILDDIR)/gif.ovl | ||
19 | |||
20 | $(GIFBUILDDIR)/gif.refmap: $(GIF_OBJ) | ||
21 | $(GIFBUILDDIR)/gif.link: $(PLUGIN_LDS) $(GIFBUILDDIR)/gif.refmap | ||
22 | $(GIFBUILDDIR)/gif.ovl: $(GIF_OBJ) | ||
23 | |||
24 | #-Os breaks decoder - dunno why | ||
25 | GIFFLAGS = $(IMGDECFLAGS) -O0 | ||
26 | |||
27 | # Compile PNG plugin with extra flags (adapted from ZXBox) | ||
28 | $(GIFBUILDDIR)/%.o: $(GIFSRCDIR)/%.c $(GIFSRCDIR)/gif.make | ||
29 | $(SILENT)mkdir -p $(dir $@) | ||
30 | $(call PRINTS,CC $(subst $(ROOTDIR)/,,$<))$(CC) -I$(dir $<) $(GIFFLAGS) -c $< -o $@ | ||