Displaying 1 result from an estimated 1 matches for "swfdec_depth_class_timelin".
Did you mean:
swfdec_depth_class_timeline
2007 Aug 22
0
3 commits - libswfdec/swfdec_sprite_movie.c player/swfplay.c
..., SWFDEC_CHARACTER (movie->sprite)->id);
if (goto_frame < movie->frame) {
+ GList *walk;
movie->frame = 0;
- old = mov->list;
- mov->list = NULL;
+ for (walk = mov->list; walk &&
+ swfdec_depth_classify (SWFDEC_MOVIE (walk->data)->depth) != SWFDEC_DEPTH_CLASS_TIMELINE;
+ walk = walk->next) {
+ /* do nothing */
+ }
+ old = walk;
+ mov->list = my_g_list_split (mov->list, old);
+ for (walk = old; walk &&
+ swfdec_depth_classify (SWFDEC_MOVIE (walk->data)->depth) == SWFDEC_DEPTH_CLASS_TIMELINE;
+ walk = walk->next) {
+...