Index: libmpcodecs/vf_noise.c =================================================================== RCS file: /cvsroot/mplayer/main/libmpcodecs/vf_noise.c,v retrieving revision 1.14 diff -u -b -B -r1.14 vf_noise.c --- libmpcodecs/vf_noise.c 21 Oct 2004 11:55:19 -0000 1.14 +++ libmpcodecs/vf_noise.c 14 Feb 2005 18:36:28 -0000 @@ -320,7 +320,7 @@ if(mpi->imgfmt!=vf->priv->outfmt) return; // colorspace differ // ok, we can do pp in-place (or pp disabled): vf->dmpi=vf_get_image(vf->next,mpi->imgfmt, - mpi->type, mpi->flags, mpi->w, mpi->h); + mpi->type, mpi->flags, mpi->width, mpi->height); mpi->planes[0]=vf->dmpi->planes[0]; mpi->stride[0]=vf->dmpi->stride[0]; mpi->width=vf->dmpi->width; @@ -340,7 +340,7 @@ // no DR, so get a new image! hope we'll get DR buffer: vf->dmpi=vf_get_image(vf->next,vf->priv->outfmt, MP_IMGTYPE_TEMP, MP_IMGFLAG_ACCEPT_STRIDE, - mpi->w,mpi->h); + mpi->width,mpi->height); //printf("nodr\n"); } //else printf("dr\n");