# HG changeset patch # User michael # Date 1046818117 0 # Node ID 565015128767194db0b3a092b24286407b31e934 # Parent 400e65bdf4f6080c221aa2aca5345d51127b5c51 10l (pp cant convert formats) fixes segfault diff -r 400e65bdf4f6 -r 565015128767 libmpcodecs/vf_pp.c --- a/libmpcodecs/vf_pp.c Tue Mar 04 14:59:59 2003 +0000 +++ b/libmpcodecs/vf_pp.c Tue Mar 04 22:48:37 2003 +0000 @@ -54,7 +54,7 @@ if(vf->priv->context) pp_free_context(vf->priv->context); vf->priv->context= pp_get_context(width, height, flags); - return vf_next_config(vf,width,height,d_width,d_height,voflags,vf->priv->outfmt); + return vf_next_config(vf,width,height,d_width,d_height,voflags,outfmt); } static void uninit(struct vf_instance_s* vf){ @@ -114,7 +114,7 @@ static int put_image(struct vf_instance_s* vf, mp_image_t *mpi){ if(!(mpi->flags&MP_IMGFLAG_DIRECT)){ // no DR, so get a new image! hope we'll get DR buffer: - vf->priv->dmpi=vf_get_image(vf->next,vf->priv->outfmt, + vf->priv->dmpi=vf_get_image(vf->next,mpi->imgfmt, MP_IMGTYPE_TEMP, MP_IMGFLAG_ACCEPT_STRIDE|MP_IMGFLAG_PREFER_ALIGNED_STRIDE, // MP_IMGTYPE_TEMP, MP_IMGFLAG_ACCEPT_STRIDE, // mpi->w,mpi->h);