# HG changeset patch # User michael # Date 1029058857 0 # Node ID ba721168ed242d5e813cb6b496059a27b656b1cb # Parent 201b25a9b9393752f10d5c07ae4f0284d3d8c8f3 oops forgot to commit that diff -r 201b25a9b939 -r ba721168ed24 libmpcodecs/vf_noise.c --- a/libmpcodecs/vf_noise.c Sun Aug 11 00:28:12 2002 +0000 +++ b/libmpcodecs/vf_noise.c Sun Aug 11 09:40:57 2002 +0000 @@ -215,8 +215,7 @@ static void get_image(struct vf_instance_s* vf, mp_image_t *mpi){ if(mpi->flags&MP_IMGFLAG_PRESERVE) return; // don't change - if(!(mpi->flags&MP_IMGFLAG_ACCEPT_STRIDE) && mpi->imgfmt!=vf->priv->outfmt) - return; // colorspace differ + if(mpi->imgfmt!=vf->priv->outfmt) return; // colorspace differ // ok, we can do pp in-place (or pp disabled): vf->priv->dmpi=vf_get_image(vf->next,mpi->imgfmt, mpi->type, mpi->flags, mpi->w, mpi->h);