Displaying 1 result from an estimated 1 matches for "b425233".
Did you mean:
3425033
2007 Mar 09
0
17 commits - libswfdec/js libswfdec/swfdec_js.c libswfdec/swfdec_js_global.c libswfdec/swfdec_js.h libswfdec/swfdec_js_movie.c libswfdec/swfdec_movie.c libswfdec/swfdec_player.c libswfdec/swfdec_player_internal.h libswfdec/swfdec_root_movie.c
...d73789a4c5d3403 (from 84b6fb897c2025028cefbd15c6c8b0ae2b19ff10)
Author: Benjamin Otte <otte@gnome.org>
Date: Fri Mar 9 13:57:50 2007 +0100
implement ActionGetTime
the action is untested but seems to work
diff --git a/libswfdec/swfdec_script.c b/libswfdec/swfdec_script.c
index b425233..428fc4c 100644
--- a/libswfdec/swfdec_script.c
+++ b/libswfdec/swfdec_script.c
@@ -1942,6 +1942,15 @@ swfdec_action_type_of (JSContext *cx, gu
return JS_TRUE;
}
+static JSBool
+swfdec_action_get_time (JSContext *cx, guint action, const guint8 *data, guint len)
+{
+ SwfdecPlayer *player = JS...