X-Git-Url: http://git.asbjorn.biz/?a=blobdiff_plain;f=lib%2Fpython%2Ftags.c;h=c2ed4d390e1d083ecca3776a2ac1e5dcbb9da4cb;hb=1bd7ca52fd044c3b054f27b99b2e6535d8733dcf;hp=6da2f73fe0cf171d059a3a085b7b591193f6e66f;hpb=50c757db52590bc2e187d2728271346b34677217;p=swftools.git diff --git a/lib/python/tags.c b/lib/python/tags.c index 6da2f73..c2ed4d3 100644 --- a/lib/python/tags.c +++ b/lib/python/tags.c @@ -817,12 +817,10 @@ static PyObject* videostream_addFrame(PyObject*self, PyObject*args, PyObject*kwa static char *kwlist[] = {"image", "quant", "type", NULL}; if (!PyArg_ParseTupleAndKeywords(args, kwargs, "O|is", kwlist, &image, &quant, &type)) return NULL; - if(fi->stream->width != image_getWidth(image) && - fi->stream->owidth != image_getWidth(image)) { + if(fi->stream->owidth != image_getWidth(image)) { PyErr_SetString(PyExc_Exception, setError("bad image width %d!=%d", image_getWidth(image), fi->stream->width));return 0; } - if(fi->stream->height != image_getHeight(image) && - fi->stream->oheight != image_getHeight(image)) { + if(fi->stream->oheight != image_getHeight(image)) { PyErr_SetString(PyExc_Exception, setError("bad image width %d!=%d", image_getHeight(image), fi->stream->height));return 0; } PyObject*tag = tag_new(&videoframe_tag);