diff options
author | Rafael Antognolli <antognolli@gmail.com> | 2009-07-13 19:38:17 +0000 |
---|---|---|
committer | Rafael Antognolli <antognolli@gmail.com> | 2009-07-13 19:38:17 +0000 |
commit | 31fc2b0dfaaeb3af320b23a78baf5429763bba54 (patch) | |
tree | 33d614908d7652c08742b225046dda80e8c7285d /legacy/ethumb/src/lib/ethumb_private.h | |
parent | 2dd7e38b96a76459fb2cb42d32be9723273b76cd (diff) |
Added support to creating animated thumbnails from videos.
These thumbnails are generated using an edje template. Each thumbnail is
an edje file, that has a group called "movie/thumb"
The thumbnail can be animated by receiving a signal "animate" or "animate_loop"
(the last one being a loop animation that calls itself when finished), and
the animate_loop program can be stopped by receiving a signal "animate_stop".
The transition time is set based on the time of the animation (that is set
by the call ethumb_video_time_set()).
SVN revision: 41322
Diffstat (limited to 'legacy/ethumb/src/lib/ethumb_private.h')
-rw-r--r-- | legacy/ethumb/src/lib/ethumb_private.h | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/legacy/ethumb/src/lib/ethumb_private.h b/legacy/ethumb/src/lib/ethumb_private.h index a0ba51c95f..cce6f0c1c1 100644 --- a/legacy/ethumb/src/lib/ethumb_private.h +++ b/legacy/ethumb/src/lib/ethumb_private.h | |||
@@ -28,7 +28,8 @@ struct _Ethumb | |||
28 | int rw, rh; | 28 | int rw, rh; |
29 | struct | 29 | struct |
30 | { | 30 | { |
31 | double time; | 31 | double start, time, interval; |
32 | int ntimes, fps; | ||
32 | } video; | 33 | } video; |
33 | struct | 34 | struct |
34 | { | 35 | { |