search for: mc_y_set

Displaying 5 results from an estimated 5 matches for "mc_y_set".

2007 Dec 05
4
[Bug 13536] New: The video in free FLV player is always 120 pixels high
...in: wget http://red-bean.com/proski/swf/player_flv.swf wget http://red-bean.com/proski/swf/drama.flv swfplay -v flv=./drama.flv player_flv.swf SWFDEC: WARN : swfdec_movie_asprops.c(281): mc_height_set: trying to set height to a non-finite value, ignoring SWFDEC: WARN : swfdec_movie_asprops.c(83): mc_y_set: trying to move video._y to a non-finite value, ignoring [skipping messages like "Add decoder xxx please"] SWFDEC: WARN : swfdec_movie_asprops.c(281): mc_height_set: trying to set height to a non-finite value, ignoring SWFDEC: WARN : swfdec_movie_asprops.c(83): mc_y_set: trying to move vi...
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
...struct { + gboolean needs_movie; const char *name; void (* get) (SwfdecMovie *movie, SwfdecAsValue *ret); void (* set) (SwfdecMovie *movie, const SwfdecAsValue *val); } swfdec_movieclip_props[] = { - { SWFDEC_AS_STR__x, mc_x_get, mc_x_set }, - { SWFDEC_AS_STR__y, mc_y_get, mc_y_set }, - { SWFDEC_AS_STR__xscale, mc_xscale_get, mc_xscale_set }, - { SWFDEC_AS_STR__yscale, mc_yscale_get, mc_yscale_set }, - { SWFDEC_AS_STR__currentframe,mc_currentframe, NULL }, - { SWFDEC_AS_STR__totalframes, mc_totalframes, NULL }, - { SWFDEC_AS_STR__alpha, mc_alpha_get, m...
2008 May 03
1
[Bug 15814] New: unable to view new york times feature
...RN : swfdec_as_interpret.c(895): swfdec_action_call_method: no function named "setEnabled" on object unknown SWFDEC: WARN : swfdec_as_interpret.c(895): swfdec_action_call_method: no function named "getHeight" on object SwfdecSpriteMovie SWFDEC: WARN : swfdec_movie_asprops.c(83): mc_y_set: trying to move ssController_mc._y to a non-finite value, ignoring SWFDEC: WARN : swfdec_as_interpret.c(895): swfdec_action_call_method: no function named "getHeight" on object SwfdecSpriteMovie SWFDEC: WARN : swfdec_as_interpret.c(895): swfdec_action_call_method: no function named "...
2007 Mar 22
0
7 commits - configure.ac doc/swfdec-docs.sgml libswfdec/js libswfdec/swfdec_buffer.c libswfdec/swfdec_buffer.h libswfdec/swfdec_js_movie.c test/trace
...); - g_assert (movie); + movie = swfdec_scriptable_from_object (cx, obj, SWFDEC_TYPE_MOVIE); + if (movie == NULL) { + SWFDEC_WARNING ("not a movie"); + return JS_TRUE; + } swfdec_movie_update (movie); d = SWFDEC_TWIPS_TO_DOUBLE (movie->matrix.y0); @@ -706,8 +772,11 @@ mc_y_set(JSContext *cx, JSObject *obj, j SwfdecMovie *movie; double d; - movie = JS_GetPrivate (cx, obj); - g_assert (movie); + movie = swfdec_scriptable_from_object (cx, obj, SWFDEC_TYPE_MOVIE); + if (movie == NULL) { + SWFDEC_WARNING ("not a movie"); + return JS_TRUE; + }...
2007 Dec 10
0
6 commits - libswfdec/Makefile.am libswfdec/swfdec_as_interpret.c libswfdec/swfdec_color_as.c libswfdec/swfdec_graphic_movie.c libswfdec/swfdec_image_decoder.c libswfdec/swfdec_morph_movie.c libswfdec/swfdec_movie_as_drawing.c
...decMovie *movie, const SwfdecAsValue *val) movie->modified = TRUE; d = SWFDEC_DOUBLE_TO_TWIPS (d); if (d != movie->matrix.x0) { - movie->matrix.x0 = d; swfdec_movie_queue_update (movie, SWFDEC_MOVIE_INVALID_MATRIX); + movie->matrix.x0 = d; } } @@ -86,8 +86,8 @@ mc_y_set (SwfdecMovie *movie, const SwfdecAsValue *val) movie->modified = TRUE; d = SWFDEC_DOUBLE_TO_TWIPS (d); if (d != movie->matrix.y0) { - movie->matrix.y0 = d; swfdec_movie_queue_update (movie, SWFDEC_MOVIE_INVALID_MATRIX); + movie->matrix.y0 = d; } } @@ -109,8 +10...