Am 06.08.2012 15:37, schrieb Fabian Greffrath:
366 libmpcodecs/vf_expand.c: No such file or directory.
This line reads:
if(vf->priv->exp_y+vf->h<vf->dmpi->h && y+h == vf->h) {...
The problem is that vf->dmpi is de-referenced. If this line gets
changed into
if(vf->dmpi && vf->priv->exp_y+vf->h<vf->dmpi->h && y+h == vf->h) {...
everything works fine, but I don't know if this is the actual fix or
just working around a deeper problem.
- Fabian
--
To UNSUBSCRIBE, email to [email protected]
with a subject of "unsubscribe". Trouble? Contact [email protected]