Bug#683907: mencoder: Crashes with seg fault even after getting rid of dmo libraries
Fabian Greffrath
fabian at greffrath.com
Mon Aug 6 14:30:12 UTC 2012
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
More information about the pkg-multimedia-maintainers
mailing list