} font_internal_t;
staticforward tag_internals_t font_tag;
-static int font_parse(tag_internals_t*self, PyObject*swftagmap)
+static int font_parse(tag_internals_t*self)
{
font_internal_t*font = (font_internal_t*)self->data;
/* TODO */
pi->po = 0;
}
}
-static int po_parse(tag_internals_t*self, PyObject*swftagmap)
+static int po_parse(tag_internals_t*self)
{
placeobject_internal_t*i = (placeobject_internal_t*)self->data;
if(i->po)
static PyObject* po_getattr(tag_internals_t*self,char*a)
{
placeobject_internal_t*i = (placeobject_internal_t*)self->data;
- if(!shape_parse(itag,0))
+ if(!po_parse(self))
return PY_ERROR("Couldn't parse placeobject");
if(!strcmp(a, "character")) {
if(!i->character)
swf_SetShape2(self->tag, ti->shape2);
return 1;
}
-static int shape_parse(tag_internals_t*self, PyObject*swftagmap)
+static int shape_parse(tag_internals_t*self)
{
shape_internal_t*i= (shape_internal_t*)self->data;
if(i->shape2)
static PyObject* shape_getfillstyles(PyObject*self, PyObject*args)
{
tag_internals_t*itag = tag_getinternals(self);
- if(!shape_parse(itag,0))
+ if(!shape_parse(itag))
return PY_ERROR("Couldn't parse shape");
shape_internal_t*fi = (shape_internal_t*)itag->data;
int num = fi->shape2->numfillstyles;
static PyObject* shape_getlinestyles(PyObject*self, PyObject*args)
{
tag_internals_t*itag = tag_getinternals(self);
- if(!shape_parse(itag,0))
+ if(!shape_parse(itag))
return PY_ERROR("Couldn't parse shape");
shape_internal_t*fi = (shape_internal_t*)itag->data;
int num = fi->shape2->numlinestyles;
static PyObject* shape_getfillstyle(PyObject*self, PyObject*args)
{
tag_internals_t*itag = tag_getinternals(self);
- if(!shape_parse(itag,0))
+ if(!shape_parse(itag))
return PY_ERROR("Couldn't parse shape");
shape_internal_t*fi = (shape_internal_t*)itag->data;
int nr = 0;
static PyObject* shape_getlinestyle(PyObject*self, PyObject*args)
{
tag_internals_t*itag = tag_getinternals(self);
- if(!shape_parse(itag,0))
+ if(!shape_parse(itag))
return PY_ERROR("Couldn't parse shape");
shape_internal_t*fi = (shape_internal_t*)itag->data;
int nr = 0;
static PyObject* shape_setfillstyle(PyObject*self, PyObject*args)
{
tag_internals_t*itag = tag_getinternals(self);
- if(!shape_parse(itag,0))
+ if(!shape_parse(itag))
return PY_ERROR("Couldn't parse shape");
shape_internal_t*fi = (shape_internal_t*)itag->data;
int nr = 0;
static PyObject* shape_setlinestyle(PyObject*self, PyObject*args)
{
tag_internals_t*itag = tag_getinternals(self);
- if(!shape_parse(itag,0))
+ if(!shape_parse(itag))
return PY_ERROR("Couldn't parse shape");
shape_internal_t*fi = (shape_internal_t*)itag->data;
int nr = 0;
staticforward tag_internals_t videostream_tag;
staticforward tag_internals_t videoframe_tag;
-static int videostream_parse(tag_internals_t*self, PyObject*swftagmap)
+static int videostream_parse(tag_internals_t*self)
{
videostream_internal_t*videostream = (videostream_internal_t*)self->data;
/* TODO */