Displaying 10 results from an estimated 10 matches for "_quality".
Did you mean:
quality
2007 Feb 22
0
3 commits - libswfdec/swfdec_js.c libswfdec/swfdec_js_movie.c libswfdec/swfdec_script.c
...;_alpha", "_visible", "_width", "_height",
- "_rotation", "_target", "_framesloaded", "_name", "_droptarget",
- "_url", "_highquality", "_focusrect", "_soundbuftime", "_quality",
- "_xmouse", "_ymouse"
-};
-
-static JSBool
+static const char *
swfdec_eval_jsval (JSContext *cx, JSObject *obj, jsval *val)
{
if (JSVAL_IS_STRING (*val)) {
const char *bytes = swfdec_js_to_string (cx, *val);
if (bytes == NULL)
- return JS_FALSE;
+...
2007 Apr 05
0
Branch 'as' - 9 commits - configure.ac libswfdec/swfdec_as_context.c libswfdec/swfdec_as_frame.c libswfdec/swfdec_as_frame.h libswfdec/swfdec_as_function.h libswfdec/swfdec_as_interpret.c libswfdec/swfdec_as_object.c libswfdec/swfdec_as_object.h
...;_alpha", "_visible", "_width", "_height",
- "_rotation", "_target", "_framesloaded", "_name", "_droptarget",
- "_url", "_highquality", "_focusrect", "_soundbuftime", "_quality",
- "_xmouse", "_ymouse"
-};
-
-static void
-swfdec_action_get_property (SwfdecAsContext *cx, guint action, const guint8 *data, guint len)
-{
- jsval val;
- SwfdecMovie *movie;
- JSObject *jsobj;
- guint32 id;
- const char *bytes;
-
- if (!JS_ValueToECMAUint32 (cx,...
2007 Jun 27
0
Branch 'as' - 6 commits - libswfdec/swfdec_as_interpret.c libswfdec/swfdec_movie_asprops.c libswfdec/swfdec_movie.c libswfdec/swfdec_movie.h libswfdec/swfdec_sprite.c libswfdec/swfdec_sprite.h libswfdec/swfdec_sprite_movie_as.c
...{ SWFDEC_AS_STR__url, NULL, NULL }, //"_url"
- { SWFDEC_AS_STR__highquality, NULL, NULL }, //"_highquality"
- { SWFDEC_AS_STR__focusrect, NULL, NULL }, //"_focusrect"
- { SWFDEC_AS_STR__soundbuftime,NULL, NULL }, //"_soundbuftime"
- { SWFDEC_AS_STR__quality, NULL, NULL }, //"_quality"
- { SWFDEC_AS_STR__xmouse, mc_xmouse_get, NULL },
- { SWFDEC_AS_STR__ymouse, mc_ymouse_get, NULL },
- { SWFDEC_AS_STR__parent, mc_parent, NULL },
- { SWFDEC_AS_STR__root, mc_root, NULL },
+ { 0, SWFDEC_AS_STR__x, mc_x_get, mc_x_set },...
2007 Jun 08
0
Changes to 'refs/tags/0.4.2'
...ecBits without a buffer
add the constant pool to the stack frame
implement ConstantPool and Push
implement GetVariable, fix a missing break in print_push and add better debugging
implement Trace action
implement CallMethod and Pop + lots of bugfixing
add stub for _quality property
add GetProperty and SetProperty actions
implement GetMember and Add2 for Flash7
implement SetMember
fix string Add2
push a double, not a float
fix SetMember
Fix case handling (don't make it global anymore) and implement SetVariable
implem...
2007 Jan 25
0
Branch 'interpreter' - 28 commits - configure.ac libswfdec/js libswfdec/swfdec_buffer.c libswfdec/swfdec_edittext_movie.c libswfdec/swfdec_js.c libswfdec/swfdec_js_global.c libswfdec/swfdec_js.h libswfdec/swfdec_js_movie.c libswfdec/swfdec_player.c
...;_alpha", "_visible", "_width", "_height",
+ "_rotation", "_target", "_framesloaded", "_name", "_droptarget",
+ "_url", "_highquality", "_focusrect", "_soundbuftime", "_quality",
+ "_xmouse", "_ymouse"
+};
+
+static JSBool
+swfdec_eval_jsval (JSContext *cx, JSObject *obj, jsval *val)
+{
+ if (JSVAL_IS_STRING (*val)) {
+ const char *bytes = swfdec_js_to_string (cx, *val);
+ if (bytes == NULL)
+ return JS_FALSE;
+ *val = swfdec_js_ev...
2007 Apr 27
0
Changes to 'refs/tags/0.4.3'
...ecBits without a buffer
add the constant pool to the stack frame
implement ConstantPool and Push
implement GetVariable, fix a missing break in print_push and add better debugging
implement Trace action
implement CallMethod and Pop + lots of bugfixing
add stub for _quality property
add GetProperty and SetProperty actions
implement GetMember and Add2 for Flash7
implement SetMember
fix string Add2
push a double, not a float
fix SetMember
Fix case handling (don't make it global anymore) and implement SetVariable
implem...
2007 Feb 19
0
22 commits - libswfdec/js libswfdec/swfdec_debugger.c libswfdec/swfdec_js.c libswfdec/swfdec_js_global.c libswfdec/swfdec_js_movie.c libswfdec/swfdec_movie.c libswfdec/swfdec_player.c libswfdec/swfdec_player_internal.h libswfdec/swfdec_script.c
...bj, jsval id, jsval *vp)
{
SwfdecMovie *movie;
@@ -1040,10 +1069,10 @@ static JSPropertySpec movieclip_props[]
{"_focusrect", -1, MC_PROP_ATTRS, not_reached, not_reached },
{"_soundbuftime", -1, MC_PROP_ATTRS, not_reached, not_reached },
{"_quality", -1, MC_PROP_ATTRS, not_reached, not_reached },
- {"_xmouse", -1, MC_PROP_ATTRS, not_reached, not_reached },
- {"_ymouse", -1, MC_PROP_ATTRS, not_reached, not_reached },
- {"_parent", -1, MC_PROP_ATTRS | JSPROP...
2007 Apr 27
0
Changes to 'refs/tags/0.4.4'
...ecBits without a buffer
add the constant pool to the stack frame
implement ConstantPool and Push
implement GetVariable, fix a missing break in print_push and add better debugging
implement Trace action
implement CallMethod and Pop + lots of bugfixing
add stub for _quality property
add GetProperty and SetProperty actions
implement GetMember and Add2 for Flash7
implement SetMember
fix string Add2
push a double, not a float
fix SetMember
Fix case handling (don't make it global anymore) and implement SetVariable
implem...
2007 Apr 04
0
Branch 'as' - 4 commits - libswfdec/Makefile.am libswfdec/swfdec_as_context.c libswfdec/swfdec_as_frame.c libswfdec/swfdec_as_interpret.c libswfdec/swfdec_as_interpret.h libswfdec/swfdec_as_object.c libswfdec/swfdec_as_types.c libswfdec/swfdec_as_types.h
...;_alpha", "_visible", "_width", "_height",
+ "_rotation", "_target", "_framesloaded", "_name", "_droptarget",
+ "_url", "_highquality", "_focusrect", "_soundbuftime", "_quality",
+ "_xmouse", "_ymouse"
+};
+
+static void
+swfdec_action_get_property (SwfdecAsContext *cx, guint action, const guint8 *data, guint len)
+{
+ jsval val;
+ SwfdecMovie *movie;
+ JSObject *jsobj;
+ guint32 id;
+ const char *bytes;
+
+ if (!JS_ValueToECMAUint32 (cx,...
2007 Feb 06
0
109 commits - configure.ac libswfdec/js libswfdec/Makefile.am libswfdec/swfdec_bits.c libswfdec/swfdec_bits.h libswfdec/swfdec_buffer.c libswfdec/swfdec_button_movie.c libswfdec/swfdec_codec_screen.c libswfdec/swfdec_color.c libswfdec/swfdec_color.h
...;_alpha", "_visible", "_width", "_height",
+ "_rotation", "_target", "_framesloaded", "_name", "_droptarget",
+ "_url", "_highquality", "_focusrect", "_soundbuftime", "_quality",
+ "_xmouse", "_ymouse"
+};
+
+static JSBool
+swfdec_eval_jsval (JSContext *cx, JSObject *obj, jsval *val)
+{
+ if (JSVAL_IS_STRING (*val)) {
+ const char *bytes = swfdec_js_to_string (cx, *val);
+ if (bytes == NULL)
+ return JS_FALSE;
+ *val = swfdec_js_ev...