Mercurial > mplayer.hg
diff libmpcodecs/vf_denoise3d.c @ 17906:20aca9baf5d8
passing pts through the filter layer (lets see if pts or cola comes out at the end)
| author | michael |
|---|---|
| date | Tue, 21 Mar 2006 21:26:42 +0000 |
| parents | 401b440a6d76 |
| children | f8d4f8eff72b |
line wrap: on
line diff
--- a/libmpcodecs/vf_denoise3d.c Tue Mar 21 06:09:32 2006 +0000 +++ b/libmpcodecs/vf_denoise3d.c Tue Mar 21 21:26:42 2006 +0000 @@ -114,7 +114,7 @@ -static int put_image(struct vf_instance_s* vf, mp_image_t *mpi){ +static int put_image(struct vf_instance_s* vf, mp_image_t *mpi, double pts){ int cw= mpi->w >> mpi->chroma_x_shift; int ch= mpi->h >> mpi->chroma_y_shift; int W = mpi->w, H = mpi->h; @@ -147,7 +147,7 @@ vf->priv->Coefs[3] + 256); vf->priv->pmpi=dmpi; // save reference image - return vf_next_put_image(vf,dmpi); + return vf_next_put_image(vf,dmpi, pts); } //===========================================================================//
