~ubuntu-dev/mplayer/ubuntu-feisty

« back to all changes in this revision

Viewing changes to libmpcodecs/vf_denoise3d.c

  • Committer: Reinhard Tartler
  • Date: 2006-07-08 08:47:54 UTC
  • Revision ID: siretart@tauware.de-20060708084754-c3ff228cc9c2d8de
upgrade to pre8

Show diffs side-by-side

added added

removed removed

Lines of Context:
114
114
 
115
115
 
116
116
 
117
 
static int put_image(struct vf_instance_s* vf, mp_image_t *mpi){
 
117
static int put_image(struct vf_instance_s* vf, mp_image_t *mpi, double pts){
118
118
        int cw= mpi->w >> mpi->chroma_x_shift;
119
119
        int ch= mpi->h >> mpi->chroma_y_shift;
120
120
        int W = mpi->w, H = mpi->h;
147
147
                vf->priv->Coefs[3] + 256);
148
148
 
149
149
        vf->priv->pmpi=dmpi; // save reference image
150
 
        return vf_next_put_image(vf,dmpi);
 
150
        return vf_next_put_image(vf,dmpi, pts);
151
151
}
152
152
 
153
153
//===========================================================================//